Bad HTML in edit.php
Brought to you by:
gryc_ueusp
"bad html in edit.php...It works ok in firefox, but
IE doesnt like bad html...poo on them. I forgot a
lessthan sign in the form... "
Replace in edit.php:
<?php echo '<input type="text" value="Username"
name="username"'; ?>
<?php echo '<input type="password" value="Password"
name="password"'; ?>
With:
<?php echo '<input type="text" value="Username"
name="username"/>'; ?>
<?php echo '<input type="password" value="Password"
name="password"/>'; ?>
===============================
Also, a small visual fix:
Replace in edit.php:
echo '" />;<textarea rows="15" name="text"
cols="53">'; ?>
With:
echo '" /><textarea rows="15" name="text"
cols="53">'; ?>