summaryrefslogtreecommitdiff
path: root/lib/event.php
diff options
context:
space:
mode:
authorEvan Prodromou <evan@controlyourself.ca>2009-02-09 08:02:08 -0500
committerEvan Prodromou <evan@controlyourself.ca>2009-02-09 08:02:08 -0500
commite40d503dfb1b929c7e91422e7ee103a2cf37288d (patch)
tree5acecd5e59dc08538b37e9ff93e261f6b7e64ae7 /lib/event.php
parent55cba5007e37245de1059b3de4774040850076c2 (diff)
had the logic on event handler reversed
Diffstat (limited to 'lib/event.php')
-rw-r--r--lib/event.php2
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);
}
}