diff options
Diffstat (limited to 'pages/account')
-rw-r--r-- | pages/account/44.php | 2 | ||||
-rw-r--r-- | pages/account/59.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/pages/account/44.php b/pages/account/44.php index 02dd164..d7e31c6 100644 --- a/pages/account/44.php +++ b/pages/account/44.php @@ -29,7 +29,7 @@ if (array_key_exists('ticketno', $_SESSION)) { } if (!valid_ticket_number($ticketno)) { - printf(_("I'm sorry, you did not enter a ticket number!%sYou cannot reset the password."), '<br/>'); + printf(_("I'm sorry, you did not enter a ticket number! %s You cannot reset the password."), '<br/>'); echo '<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 09771b1..ebcc5fc 100644 --- a/pages/account/59.php +++ b/pages/account/59.php @@ -46,7 +46,7 @@ if(intval($_REQUEST['oldid'])==43){ } $ticketno = ""; if(array_key_exists('ticketno', $_SESSION)) $ticketno = $_SESSION['ticketno']; if (!valid_ticket_number($ticketno) && $support == 1) { - printf(_("I'm sorry, you did not enter a ticket number!%sSupport is not allowed to view the account history without a ticket number."), '<br/>'); + printf(_("I'm sorry, you did not enter a ticket number! %s Support is not allowed to view the account history without a ticket number."), '<br/>'); echo '<br/><a href="account.php?id=43&userid=' . intval($_REQUEST['userid']) .'">'. _('Back to previous page.').'</a>'; showfooter(); exit; |