From: Michael M Slusarz Date: Sun, 23 Nov 2008 18:07:22 +0000 (-0700) Subject: Merge from HEAD: 1.733 X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=93a1983c5b753f5407eaaced3cdb6f2d82cb7c05;p=horde.git Merge from HEAD: 1.733 --- diff --git a/imp/lib/IMP.php b/imp/lib/IMP.php index b8bfc3350..65bf5d3ed 100644 --- a/imp/lib/IMP.php +++ b/imp/lib/IMP.php @@ -124,11 +124,11 @@ class IMP static public function checkRequestToken($slug, $token) { if (empty($_SESSION['horde_form_secrets'][$token])) { - return PEAR::raiseError(_("We cannot verify that this request was really sent by you. It could be a malicious request.")); + return PEAR::raiseError(_("We cannot verify that this request was really sent by you. It could be a malicious request. If you intended to perform this action, you can retry it now.")); } if ($_SESSION['horde_form_secrets'][$token] + $GLOBALS['conf']['server']['token_lifetime'] < time()) { - return PEAR::raiseError(sprintf(_("This request cannot be completed because the link you followed or the form you submitted was only valid for %d minutes"), round($GLOBALS['conf']['server']['token_lifetime'] / 60))); + return PEAR::raiseError(sprintf(_("This request cannot be completed because the link you followed or the form you submitted was only valid for %d minutes. Please try again now."), round($GLOBALS['conf']['server']['token_lifetime'] / 60))); } return true;