diff options
author | mam <m.maengel@project-biz.de> | 2014-02-22 14:17:25 +0100 |
---|---|---|
committer | mam <m.maengel@project-biz.de> | 2014-02-22 14:17:25 +0100 |
commit | dae136a73c50a394529f38574eb9273416b45465 (patch) | |
tree | 55f75d182901e7e45ca28057176a914346c734ea /pages | |
parent | b0d8d898638f99b9ee0decd5b53c373f55092f0a (diff) | |
download | cacert-devel-dae136a73c50a394529f38574eb9273416b45465.tar.gz cacert-devel-dae136a73c50a394529f38574eb9273416b45465.tar.xz cacert-devel-dae136a73c50a394529f38574eb9273416b45465.zip |
bug 1138: fixed the wrong output in the 44 / 59 php.
Diffstat (limited to 'pages')
-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 0b4a9b9..16bfa8c 100644 --- a/pages/account/44.php +++ b/pages/account/44.php @@ -19,7 +19,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>'); + 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 7ad3f9d..2fc8aa2 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) { - 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>'); + 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; } |