]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Don't miss integer 0 values from find()
authorMikael Nordfeldth <mmn@hethane.se>
Tue, 19 Nov 2013 01:39:43 +0000 (02:39 +0100)
committerMikael Nordfeldth <mmn@hethane.se>
Tue, 19 Nov 2013 12:30:14 +0000 (13:30 +0100)
plugins/OStatus/classes/FeedSub.php

index aad7ec2110f08d159ad5a07c68cafde6d1f3cfcc..8418e37a49956adf62def58ace1215af7154f559 100644 (file)
@@ -249,7 +249,7 @@ class FeedSub extends Managed_DataObject
         $fs = new FeedSub();
         // the "" empty string check is because we historically haven't saved unsubscribed feeds as NULL
         $fs->whereAdd('sub_end IS NOT NULL AND sub_end!="" AND sub_end < NOW() - INTERVAL 1 day');
-        if ($fs->find() === false) {
+        if (!$fs->find()) { // find can be both false and 0, depending on why nothing was found
             throw new NoResultException($fs);
         }
         return $fs;