PDA

View Full Version : edit_my_acount.php minor problem



Anonymous
01-13-2004, 05:48 PM
I apologize for reposting in case this has been posted before

file: edit_my_acount.php
Following minor errors could cause problems in some browsers, (missing </td></tr>)

Line 76 I think
echo "<tr><td colspan=\"2\" class=\"row_main\"><h3>$lang[user_editor_modify_user]</h3>";

Should read

echo "<tr><td colspan=\"2\" class=\"row_main\"><h3>$lang[user_editor_modify_user]</h3></td></tr>";

Line 148 I think
echo "<tr><td align=\"right\" class=\"row_main\"><b>$lang[user_email]: <span class=\"required\">*</span></b></td><td align=\"left\" class=\"row_main\"> <input type=\"text\" name=\"user_email\" value=\"$edit_emailAddress\">";

Shoul read
echo "<tr><td align=\"right\" class=\"row_main\"><b>$lang[user_email]: <span class=\"required\">*</span></b></td><td align=\"left\" class=\"row_main\"> <input type=\"text\" name=\"user_email\" value=\"$edit_emailAddress\"></td></tr>";