From: Evan Prodromou Date: Mon, 9 Feb 2009 13:48:50 +0000 (-0500) Subject: allow events without arguments X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=dce975e33b95e455c671207054a1d4c0237e075f;p=quix0rs-gnu-social.git allow events without arguments --- diff --git a/lib/event.php b/lib/event.php index 10ef5ec0a9..d815ae54ba 100644 --- a/lib/event.php +++ b/lib/event.php @@ -98,7 +98,7 @@ class Event { * on results of handlers. */ - public static function handle($name, $args) { + public static function handle($name, $args=array()) { $result = null; if (array_key_exists($name, Event::$_handlers)) { foreach (Event::$_handlers[$name] as $handler) {