diff options
Diffstat (limited to 'pages')
-rw-r--r-- | pages/account/44.php | 1 | ||||
-rw-r--r-- | pages/account/59.php | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/pages/account/44.php b/pages/account/44.php index 51e853a..0b4a9b9 100644 --- a/pages/account/44.php +++ b/pages/account/44.php @@ -20,6 +20,7 @@ $ticketno = ""; if(array_key_exists('ticketno', $_SESSION)) $ticketno = $_SESSION['ticketno']; if (!valid_ticket_number($ticketno)) { echo printf(_("I'm sorry, you did not enter a ticket number!%sYou cannot reset the password.%s"), '<br/>', '<br/><a href="account.php?id=43&userid=' . intval($_REQUEST['userid']) .'">'. _('Back to previous page.').'</a>'); + showfooter(); exit; } ?> diff --git a/pages/account/59.php b/pages/account/59.php index 05a6cb5..4dcb056 100644 --- a/pages/account/59.php +++ b/pages/account/59.php @@ -47,6 +47,7 @@ if(intval($_REQUEST['oldid'])==43){ $ticketno = ""; if(array_key_exists('ticketno', $_SESSION)) $ticketno = $_SESSION['ticketno']; if (!valid_ticket_number($ticketno) && $support == 1) { echo printf(_("I'm sorry, you did not enter a ticket number!%sSupport is not allowed to view the account history without a ticket number.%s"), '<br/>', '<br/><a href="account.php?id=43&userid=' . intval($_REQUEST['userid']) .'">'. _('Back to previous page.').'</a>'); + showfooter(); exit; } ?> |