cellog Sat Apr 28 19:25:07 2007 UTC
Modified files:
/pearweb/templates/users lostpassword.php
Log:
fix incorrect nesting of html tags
http://cvs.php.net/viewvc.cgi/pearweb/templates/users/lostpassword.php?r1=1.1&r2=1.2&diff_format=u
Index: pearweb/templates/users/lostpassword.php
diff -u pearweb/templates/users/lostpassword.php:1.1
pearweb/templates/users/lostpassword.php:1.2
--- pearweb/templates/users/lostpassword.php:1.1 Thu Mar 8 02:58:32 2007
+++ pearweb/templates/users/lostpassword.php Sat Apr 28 19:25:07 2007
@@ -19,12 +19,12 @@
</p>
<?php
if (count($errors)) {
-echo '<div class="errors">';
+ echo '<div class="errors">';
foreach ($errors as $error) {
echo htmlspecialchars($error) . "<br />\n";
}
+ echo '</div>';
}
-echo '</div>';
?>
<form name="resetpassword" method="POST" action="forgot-password.php">
<table>
--
PEAR CVS Mailing List (http://pear.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
|