projects
/
horde.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7b16317
)
Do not dereference otherwise the fix does not help :)
author
Gunnar Wrobel
<p@rdus.de>
Thu, 5 Nov 2009 06:00:47 +0000
(07:00 +0100)
committer
Gunnar Wrobel
<p@rdus.de>
Thu, 5 Nov 2009 06:00:47 +0000
(07:00 +0100)
framework/Notification/lib/Horde/Notification/Handler/Base.php
patch
|
blob
|
history
diff --git
a/framework/Notification/lib/Horde/Notification/Handler/Base.php
b/framework/Notification/lib/Horde/Notification/Handler/Base.php
index
83e7ed6
..
a905ad1
100644
(file)
--- a/
framework/Notification/lib/Horde/Notification/Handler/Base.php
+++ b/
framework/Notification/lib/Horde/Notification/Handler/Base.php
@@
-219,8
+219,12
@@
implements Horde_Notification_Handler_Interface
{
foreach ($options['listeners'] as $listener) {
if (isset($this->_listeners[$listener])) {
- $stack = $this->_storage->get($this->_listeners[$listener]->getName());
- $this->_listeners[$listener]->notify($stack, $options);
+ $this->_listeners[$listener]->notify(
+ $this->_storage->get(
+ $this->_listeners[$listener]->getName()
+ ),
+ $options
+ );
}
}
}