HTML error in settings.php causing issue in server
-
Hi,
Just wanted to report a small HTML issue that is causing the admin settings to fail in our server. We have a really particular setup where all the HTML is being rewritten through the apache module mod_proxy_html. That can cause some weird issues if the HTML is not valid even though this same issue doesn’t cause any problem in normal browsers as they are more error permissive.
So in settings.php, line 245
<li id="ai-tab0" class="ai-tab" title="<?php echo AD_INSERTER_NAME ?> Settings<?php echo $title_hf ?>"><a href="#tab-0" style="padding: 5px 14px 6px 12px;"><div class="ai-icon-gear<?php echo $class_hf ?>" /></div></a></li>Should be:
<li id="ai-tab0" class="ai-tab" title="<?php echo AD_INSERTER_NAME ?> Settings<?php echo $title_hf ?>"><a href="#tab-0" style="padding: 5px 14px 6px 12px;"><div class="ai-icon-gear<?php echo $class_hf ?>" ></div></a></li>The tag “<div class=”ai-icon-gear” is being incorrectly autoclosed.
I know this is a really minor issue but if you could add this fix to your code we would avoid having to maintain a patched version of your plugin.
Thanks!
The topic ‘HTML error in settings.php causing issue in server’ is closed to new replies.