diff options
author | Michael Tänzer <neo@nhng.de> | 2014-03-31 17:13:49 +0200 |
---|---|---|
committer | Michael Tänzer <neo@nhng.de> | 2014-03-31 17:13:49 +0200 |
commit | 530dc6bd04119aa4a0955463f2ca1f149a81d5d1 (patch) | |
tree | 413277a98e02973dc9c7bbbde303bb81b360e59f /pages/account | |
parent | b73cb1b8bd762a2c853e5981064fe86620ad0203 (diff) | |
download | cacert-devel-530dc6bd04119aa4a0955463f2ca1f149a81d5d1.tar.gz cacert-devel-530dc6bd04119aa4a0955463f2ca1f149a81d5d1.tar.xz cacert-devel-530dc6bd04119aa4a0955463f2ca1f149a81d5d1.zip |
bug 1138: Documentation and minor fixes
Signed-off-by: Michael Tänzer <neo@nhng.de>
Diffstat (limited to 'pages/account')
-rw-r--r-- | pages/account/59.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/pages/account/59.php b/pages/account/59.php index 51eb6ef..8d76789 100644 --- a/pages/account/59.php +++ b/pages/account/59.php @@ -26,7 +26,7 @@ $res =get_user_data($userid); if(mysql_num_rows($res) <= 0) { - echo _("I'm sorry, the user you were looking for seems to have disappeared! Bad things are a foot!"); + echo _("I'm sorry, the user you were looking for seems to have disappeared! Bad things are afoot!"); exit; } @@ -46,7 +46,8 @@ 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.%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."), '<br/>'); + echo '<br/><a href="account.php?id=43&userid=' . intval($_REQUEST['userid']) .'">'. _('Back to previous page.').'</a>'; showfooter(); exit; } |