diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2009-02-09 08:02:08 -0500 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2009-02-09 08:02:08 -0500 |
commit | e40d503dfb1b929c7e91422e7ee103a2cf37288d (patch) | |
tree | 5acecd5e59dc08538b37e9ff93e261f6b7e64ae7 /lib/event.php | |
parent | 55cba5007e37245de1059b3de4774040850076c2 (diff) |
had the logic on event handler reversed
Diffstat (limited to 'lib/event.php')
-rw-r--r-- | lib/event.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/event.php b/lib/event.php index f5406d07a..10ef5ec0a 100644 --- a/lib/event.php +++ b/lib/event.php @@ -108,6 +108,6 @@ class Event { } } } - return ($result === false); + return ($result !== false); } } |