]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
had the logic on event handler reversed
authorEvan Prodromou <evan@controlyourself.ca>
Mon, 9 Feb 2009 13:02:08 +0000 (08:02 -0500)
committerEvan Prodromou <evan@controlyourself.ca>
Mon, 9 Feb 2009 13:02:08 +0000 (08:02 -0500)
lib/event.php

index f5406d07a6554acf7d7614d89140c927e1d7ffd4..10ef5ec0a9a1b74c4ca361bba0a07011c4e04ba7 100644 (file)
@@ -108,6 +108,6 @@ class Event {
                 }
             }
         }
-        return ($result === false);
+        return ($result !== false);
     }
 }