summaryrefslogtreecommitdiff
path: root/system/core/Event.php
diff options
context:
space:
mode:
authorBharat Mediratta <bharat@menalto.com>2009-06-06 14:51:04 -0700
committerBharat Mediratta <bharat@menalto.com>2009-06-06 14:51:04 -0700
commitb179b106c2b4d3971498f513ffc71eff1b6b1a5d (patch)
treeccffecba610b9dfc72ba6f4057c54ca0c8ae9fb7 /system/core/Event.php
parentbccaad92bb3b2ecc7c95e5eaf728b9be6e8a3b3a (diff)
Update Kohana to r4409
Diffstat (limited to 'system/core/Event.php')
-rw-r--r--system/core/Event.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/system/core/Event.php b/system/core/Event.php
index 90944c37..06468a8d 100644
--- a/system/core/Event.php
+++ b/system/core/Event.php
@@ -4,7 +4,7 @@
* to be added to 'events'. Events can be run multiple times, and can also
* process event-specific data. By default, Kohana has several system events.
*
- * $Id: Event.php 4358 2009-05-27 17:24:25Z ixmatus $
+ * $Id: Event.php 4390 2009-06-04 03:05:36Z zombor $
*
* @package Core
* @author Kohana Team
@@ -206,7 +206,7 @@ final class Event {
foreach ($callbacks as $callback)
{
- call_user_func_array($callback, array(&$data));
+ call_user_func($callback);
}
// Do this to prevent data from getting 'stuck'