From 0d5150a131c94419c60fb753ed0efe5a408fb155 Mon Sep 17 00:00:00 2001 From: Ben Klang Date: Fri, 1 Jan 2010 23:57:42 -0500 Subject: [PATCH] Shout: Fix message string "User" -> "Extension" --- shout/extensions.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/shout/extensions.php b/shout/extensions.php index adeb6d7e8..386032100 100644 --- a/shout/extensions.php +++ b/shout/extensions.php @@ -34,13 +34,12 @@ case 'edit': // Form is Valid and Submitted try { $Form->execute(); - $notification->push(_("User information updated."), + $notification->push(_("Extension information updated."), 'horde.success'); $action = 'list'; } catch (Exception $e) { $notification->push($e); } - break; } elseif ($Form->isSubmitted()) { $notification->push(_("Problem processing the form. Please check below and try again."), 'horde.warning'); @@ -80,6 +79,7 @@ case 'delete': $notification->push($e); } } elseif ($Form->isSubmitted()) { + // Submitted but not valid $notification->push(_("Problem processing the form. Please check below and try again."), 'horde.warning'); } -- 2.11.0