From: Ben Klang Date: Sat, 2 Jan 2010 04:57:42 +0000 (-0500) Subject: Shout: Fix message string "User" -> "Extension" X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=0d5150a131c94419c60fb753ed0efe5a408fb155;p=horde.git Shout: Fix message string "User" -> "Extension" --- 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'); }