From: Michael M Slusarz Date: Thu, 25 Jun 2009 23:28:02 +0000 (-0600) Subject: Fix javascript notification driver X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=0f47b93b52221dfc0e9af669938981452012d9b8;p=horde.git Fix javascript notification driver --- diff --git a/framework/Notification/lib/Horde/Notification/Listener/Javascript.php b/framework/Notification/lib/Horde/Notification/Listener/Javascript.php index 9702a7e04..f0769a0a8 100644 --- a/framework/Notification/lib/Horde/Notification/Listener/Javascript.php +++ b/framework/Notification/lib/Horde/Notification/Listener/Javascript.php @@ -73,7 +73,8 @@ class Horde_Notification_Listener_Javascript extends Horde_Notification_Listener */ public function getMessage($message, $options = array()) { - return $this->getEvent($message); + $event = $this->getEvent($message); + return $event->getMessage(); } }