diff options
author | eric <eric> | 2004-06-24 21:08:35 +0200 |
---|---|---|
committer | eric <eric> | 2004-06-24 21:08:35 +0200 |
commit | 1f62f86af5225643f2a7d72c1a050c46ffc37477 (patch) | |
tree | 491ff279b1ad75d461b071f993d6978de19aac3f /web/html/account.php | |
parent | 9c6ec26c3279ca3e1d186196d229449d9501c386 (diff) | |
download | aur-1f62f86af5225643f2a7d72c1a050c46ffc37477.tar.gz aur-1f62f86af5225643f2a7d72c1a050c46ffc37477.tar.xz |
getting closer to printing package search results - also fixed some XHTML stuff
Diffstat (limited to 'web/html/account.php')
-rw-r--r-- | web/html/account.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/web/html/account.php b/web/html/account.php index a00a5e53..0975ab7c 100644 --- a/web/html/account.php +++ b/web/html/account.php @@ -29,7 +29,7 @@ if (isset($_COOKIE["AURSID"])) { } else { # a non-privileged user is trying to access the search page # - print __("You are not allowed to access this area.")."<br/>\n"; + print __("You are not allowed to access this area.")."<br />\n"; } } elseif ($_REQUEST["Action"] == "DisplayAccount") { @@ -73,7 +73,7 @@ if (isset($_COOKIE["AURSID"])) { if ($atype == "Trusted User" || $atype == "Developer") { # display the search page if they're a TU/dev # - print __("Use this form to search existing accounts.")."<br/>\n"; + print __("Use this form to search existing accounts.")."<br />\n"; search_accounts_form(); } else { @@ -96,7 +96,7 @@ if (isset($_COOKIE["AURSID"])) { # normal user editing themselves. # print __("Use this form to update your account."); - print "<br/>"; + print "<br />"; print __("Leave the password fields blank to keep your same password."); display_account_form($atype, "UpdateAccount", $row["Username"], $row["AccountType"], $row["Suspended"], $row["Email"], |