Marco
Mon 17th Feb '03, 1:41pm
I didn't think this was worth a new topic... but according to Steve Machol it is, so here goes. :)
admin/index.php, line 76:
<td align="right"><b><a href="../index.php?s=<?php echo $session[sessionhash]; ?>" target="_blank">Go to your Forums Home Page</b></b></TD>
Should ofcourse be:
<td align="right"><b><a href="../index.php?s=<?php echo $session[sessionhash]; ?>" target="_blank">Go to your Forums Home Page</a></b></td>
What this fixes: the <a>-tag is now actually closed instead of having two closing </b>-tags there. Also changed the </td>-tag to lowercase, though that doesn't really matter :p
admin/index.php, line 76:
<td align="right"><b><a href="../index.php?s=<?php echo $session[sessionhash]; ?>" target="_blank">Go to your Forums Home Page</b></b></TD>
Should ofcourse be:
<td align="right"><b><a href="../index.php?s=<?php echo $session[sessionhash]; ?>" target="_blank">Go to your Forums Home Page</a></b></td>
What this fixes: the <a>-tag is now actually closed instead of having two closing </b>-tags there. Also changed the </td>-tag to lowercase, though that doesn't really matter :p