From 56e1a562e910fa214e392c3254bd8b56201840be Mon Sep 17 00:00:00 2001 From: Michael M Slusarz Date: Tue, 18 May 2010 23:48:08 -0600 Subject: [PATCH] Adding the registry name (most likely Horde) is both wordy and potentially confusing to the end-user --- horde/login.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/horde/login.php b/horde/login.php index a2f807bb3..7ce00936a 100644 --- a/horde/login.php +++ b/horde/login.php @@ -42,13 +42,13 @@ function _getLogoutReasonString($code) { switch ($code) { case Horde_Auth::REASON_SESSION: - return sprintf(_("Your %s session has expired. Please login again."), $GLOBALS['registry']->get('name')); + return _("Your session has expired. Please login again."); case Horde_Auth::REASON_SESSIONIP: - return sprintf(_("Your Internet Address has changed since the beginning of your %s session. To protect your security, you must login again."), $GLOBALS['registry']->get('name')); + return _("Your Internet Address has changed since the beginning of your session. To protect your security, you must login again."); case Horde_Auth::REASON_BROWSER: - return sprintf(_("Your browser appears to have changed since the beginning of your %s session. To protect your security, you must login again."), $GLOBALS['registry']->get('name')); + return _("Your browser appears to have changed since the beginning of your session. To protect your security, you must login again."); case Horde_Auth::REASON_LOGOUT: return _("You have been logged out."); -- 2.11.0