summaryrefslogtreecommitdiffstats
path: root/web/template/header.php
diff options
context:
space:
mode:
authorCallan Barrett <wizzomafizzo@gmail.com>2008-01-17 09:04:00 +0100
committerSimo Leone <simo@archlinux.org>2008-01-20 10:16:07 +0100
commit52a770e7e7c9a1701e96aa3c66f25d810394aeaf (patch)
tree41144b48d4c9d7722e6eaca6d8d6cff080edb9c1 /web/template/header.php
parentaa2517ebfc4acf18d17a48eb79b377aa4f65c0ac (diff)
downloadaur-52a770e7e7c9a1701e96aa3c66f25d810394aeaf.tar.gz
aur-52a770e7e7c9a1701e96aa3c66f25d810394aeaf.tar.xz
Fix login error and translation bug
Fixes a login error where entering nothing would result in the login message "Incorrect password for username, ." and changes the translation "TU" to "Trusted User" so the menu bar on the accounts page doesn't bug up (we need a new translation system :((() Signed-off-by: Callan Barrett <wizzomafizzo@gmail.com> Signed-off-by: Simo Leone <simo@archlinux.org>
Diffstat (limited to 'web/template/header.php')
-rw-r--r--web/template/header.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/template/header.php b/web/template/header.php
index aaccfa2c..6e114fdd 100644
--- a/web/template/header.php
+++ b/web/template/header.php
@@ -93,7 +93,7 @@ if (isset($_COOKIE["AURSID"])) {
} ?>
<form method='post'>
<?php print __("Username:"); ?>
- <input type='text' name='user' size='30' maxlength='64'>
+ <input type='text' name='user' size='30' maxlength='64' value='<?php if (isset($_POST['user'])) { print htmlspecialchars($_POST['user'], ENT_QUOTES); } ?>'>
<?php print __("Password:"); ?>
<input type='password' name='pass' size='30' maxlength='32'>
<input type='submit' class='button' value='<?php print __("Login"); ?>'>