summaryrefslogtreecommitdiffstats
path: root/web/html/register.php
diff options
context:
space:
mode:
authorMarcel Korpel <marcel.korpel@gmail.com>2015-07-19 22:32:06 +0200
committerLukas Fleischer <lfleischer@archlinux.org>2015-08-08 12:59:24 +0200
commit8db2ff5da679b3c2d5a53f67f67863d786057f36 (patch)
tree3e226df9c508847e4044336e7c506c3e9ac8a250 /web/html/register.php
parentcb9c0d2477480b63294854ce2abf7d9a34059ee6 (diff)
downloadaur-8db2ff5da679b3c2d5a53f67f67863d786057f36.tar.gz
aur-8db2ff5da679b3c2d5a53f67f67863d786057f36.tar.xz
Set correct 'My Account' link after changing username
Don't print messages (and the account form) in process_account_form() anymore, but return them to the caller. When updating accounts, this function will be called before the headers are written. If a username has been changed by process_account_form(), the headers now show the updated username from the database in the 'My Account' link. Clicking on it immediately after changing a username will no longer lead to a non-existing URL. Signed-off-by: Marcel Korpel <marcel.korpel@gmail.com> Signed-off-by: Lukas Fleischer <lfleischer@archlinux.org>
Diffstat (limited to 'web/html/register.php')
-rw-r--r--web/html/register.php11
1 files changed, 10 insertions, 1 deletions
diff --git a/web/html/register.php b/web/html/register.php
index cb3e8dd2..9c5c1cc1 100644
--- a/web/html/register.php
+++ b/web/html/register.php
@@ -19,11 +19,20 @@ echo '<div class="box">';
echo '<h2>' . __('Register') . '</h2>';
if (in_request("Action") == "NewAccount") {
- process_account_form("new", "NewAccount", in_request("U"), 1, 0,
+ list($success, $message) = process_account_form(
+ "new", "NewAccount", in_request("U"), 1, 0,
in_request("E"), '', '', in_request("R"),
in_request("L"), in_request("I"), in_request("K"),
in_request("PK"));
+ print $message;
+
+ if (!$success) {
+ display_account_form("NewAccount", in_request("U"), 1, 0,
+ in_request("E"), '', '', in_request("R"),
+ in_request("L"), in_request("I"), in_request("K"),
+ in_request("PK"));
+ }
} else {
print '<p>' . __("Use this form to create an account.") . '</p>';
display_account_form("NewAccount", "", "", "", "", "", "", "", $LANG);