allow events without arguments

This commit is contained in:
Evan Prodromou 2009-02-09 08:48:50 -05:00
parent 175f1e7395
commit dce975e33b

View File

@ -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) {