Hey all,
I noticed that in IE7 the settings tables were broken at "Comments" so I had a look at the code and found 4 quotes (") that didn't belong.
Starting at about line 1164 in the admincp_settings file under admin/a/ you will find this bit of code (you can see by the mixed colors that something is wrong):
PHP: <input type=radio name="comments_avatar" value="" '.(!$this->settings['comments_avatar']? 'checked':'').'">Gravatar<br>
<input type=radio name="comments_avatar" value="identicon" '.($this->settings['comments_avatar'] == 'identicon'? 'checked':'').'">Identicon<br>
<input type=radio name="comments_avatar" value="monsterid" '.($this->settings['comments_avatar'] == 'monsterid'? 'checked':'').'">Monster ID<br>
<input type=radio name="comments_avatar" value="wavatar" '.($this->settings['comments_avatar'] == 'wavatar'? 'checked':'').'">Wavatar<br>
At the end of each <input> is an extra quote ("). Just remove the four of them to fix the problem.
PHP: <input type=radio name="comments_avatar" value="" '.(!$this->settings['comments_avatar']? 'checked':'').'>Gravatar<br>
<input type=radio name="comments_avatar" value="identicon" '.($this->settings['comments_avatar'] == 'identicon'? 'checked':'').'>Identicon<br>
<input type=radio name="comments_avatar" value="monsterid" '.($this->settings['comments_avatar'] == 'monsterid'? 'checked':'').'>Monster ID<br>
<input type=radio name="comments_avatar" value="wavatar" '.($this->settings['comments_avatar'] == 'wavatar'? 'checked':'').'>Wavatar<br>
|