diff options
author | Michael Tänzer <neo@nhng.de> | 2014-03-24 17:00:53 +0100 |
---|---|---|
committer | Michael Tänzer <neo@nhng.de> | 2014-03-24 17:00:53 +0100 |
commit | 7e7604335e0dc4b783656f9ae369975b4e3d9c9e (patch) | |
tree | 98cd31d3e5166d6f79081c5d6f54a1d83bdc8997 | |
parent | f6cecf7628e2db1d201615f2a0be87a077c6780f (diff) | |
download | cacert-devel-7e7604335e0dc4b783656f9ae369975b4e3d9c9e.tar.gz cacert-devel-7e7604335e0dc4b783656f9ae369975b4e3d9c9e.tar.xz cacert-devel-7e7604335e0dc4b783656f9ae369975b4e3d9c9e.zip |
bug 1138: Move back link out of the translation string
Signed-off-by: Michael Tänzer <neo@nhng.de>
-rw-r--r-- | pages/account/44.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pages/account/44.php b/pages/account/44.php index 16bfa8c..dd0f376 100644 --- a/pages/account/44.php +++ b/pages/account/44.php @@ -19,7 +19,8 @@ $ticketno = ""; if(array_key_exists('ticketno', $_SESSION)) $ticketno = $_SESSION['ticketno']; if (!valid_ticket_number($ticketno)) { - 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."), '<br/>'); + echo '<br/><a href="account.php?id=43&userid='.intval($_REQUEST['userid']).'">'._('Back to previous page.').'</a>'; showfooter(); exit; } |