Fix javascript notification driver
authorMichael M Slusarz <slusarz@curecanti.org>
Thu, 25 Jun 2009 23:28:02 +0000 (17:28 -0600)
committerMichael M Slusarz <slusarz@curecanti.org>
Thu, 25 Jun 2009 23:28:43 +0000 (17:28 -0600)
framework/Notification/lib/Horde/Notification/Listener/Javascript.php

index 9702a7e..f0769a0 100644 (file)
@@ -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();
     }
 
 }