From: Michael M Slusarz Date: Tue, 16 Mar 2010 19:37:36 +0000 (-0600) Subject: Correctly mark as unsuccessful result X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=37c53ad6bcf090ea99abf15b930c3b3145350aa8;p=horde.git Correctly mark as unsuccessful result --- diff --git a/imp/lib/Ajax/Application.php b/imp/lib/Ajax/Application.php index 3236ec18e..18b5f2751 100644 --- a/imp/lib/Ajax/Application.php +++ b/imp/lib/Ajax/Application.php @@ -1443,7 +1443,7 @@ class IMP_Ajax_Application extends Horde_Ajax_Application_Base $headers['from'] = $identity->getFromLine(null, $this->_vars->from); } catch (Horde_Exception $e) { $GLOBALS['notification']->push($e); - $result->success = 1; + $result->success = 0; return array($result); }