I am experiencing a very weird problem with this one part of the "EDIT OPTIONS" template:
At account creation, this defaultes to YES, as it should.
But whenever I open up my options (via the EDIT OPTIONS button), this is set to NO.
Even if I click the YES radio button and "submit modifications", if I reopen my OPTIONS it is back at NO.
Any idea why this would be happening?
In the modifyoptions template, the code has this which looks correct:
Thanks,
Browse board with cookies?
Clicking yes will use cookies to keep your id for this session. Clicking no will send it through the links. (Selecting no may cause problems when sharing links with people behind the same proxy as you)
Clicking yes will use cookies to keep your id for this session. Clicking no will send it through the links. (Selecting no may cause problems when sharing links with people behind the same proxy as you)
But whenever I open up my options (via the EDIT OPTIONS button), this is set to NO.
Even if I click the YES radio button and "submit modifications", if I reopen my OPTIONS it is back at NO.
Any idea why this would be happening?
In the modifyoptions template, the code has this which looks correct:
Code:
<tr> <td bgcolor="{secondaltcolor}"><normalfont><b>Browse board with cookies?</b></normalfont><br> <smallfont>Clicking yes will use cookies to keep your id for this session. Clicking no will send it through the links. (Selecting no may cause problems when sharing links with people behind the same proxy as you)</smallfont></td> <td bgcolor="{secondaltcolor}"><normalfont> <input type="radio" name="nosessionhash" $nosessionhashchecked value="yes"> yes <input type="radio" name="nosessionhash" $nosessionhashnotchecked value="no"> no </normalfont></td> </tr>
Comment