diff options
author | Callan Barrett <wizzomafizzo@gmail.com> | 2008-01-17 09:04:00 +0100 |
---|---|---|
committer | Simo Leone <simo@archlinux.org> | 2008-01-20 10:16:07 +0100 |
commit | 52a770e7e7c9a1701e96aa3c66f25d810394aeaf (patch) | |
tree | 41144b48d4c9d7722e6eaca6d8d6cff080edb9c1 /web/lib | |
parent | aa2517ebfc4acf18d17a48eb79b377aa4f65c0ac (diff) | |
download | aur-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/lib')
-rw-r--r-- | web/lib/aur.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/web/lib/aur.inc b/web/lib/aur.inc index cfe4a96f..5dec6e3c 100644 --- a/web/lib/aur.inc +++ b/web/lib/aur.inc @@ -345,10 +345,10 @@ function html_header($title="") { if (isset($_POST["user"]) || isset($_POST["pass"])) { # Attempting to log in # - if (!isset($_POST["user"])) { + if (!isset($_POST["user"]) || $_POST['user'] === "") { $login_error = __("You must supply a username."); } - if (!isset($_POST["pass"])) { + if ((!isset($_POST["pass"]) || $_POST['pass'] === "") && empty($login_error)) { $login_error = __("You must supply a password."); } if (!$login_error) { |