diff options
-rw-r--r-- | web/lib/aur.inc | 3 | ||||
-rw-r--r-- | web/template/login_form.php | 6 |
2 files changed, 6 insertions, 3 deletions
diff --git a/web/lib/aur.inc b/web/lib/aur.inc index e43ddf62..3d0f3e0d 100644 --- a/web/lib/aur.inc +++ b/web/lib/aur.inc @@ -343,9 +343,6 @@ function html_header($title="") { global $LANG; global $SUPPORTED_LANGS; - $login = try_login(); - $login_error = $login['error']; - $title = htmlspecialchars($title, ENT_QUOTES); include('header.php'); diff --git a/web/template/login_form.php b/web/template/login_form.php index 70c24c71..e1192c06 100644 --- a/web/template/login_form.php +++ b/web/template/login_form.php @@ -1,3 +1,9 @@ +<?php +include_once('acctfuncs.inc'); +$login = try_login(); +$login_error = $login['error']; +?> + <span id="login_bar"> <?php if (isset($_COOKIE["AURSID"])) { |