had the logic on event handler reversed

This commit is contained in:
Evan Prodromou 2009-02-09 08:02:08 -05:00
parent 55cba5007e
commit e40d503dfb
1 changed files with 1 additions and 1 deletions

View File

@ -108,6 +108,6 @@ class Event {
}
}
}
return ($result === false);
return ($result !== false);
}
}