From: Brion Vibber Date: Tue, 29 Mar 2011 22:05:54 +0000 (-0700) Subject: php notice fix -- misspelled bit X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=d7304d565947fcc704db5289cf2da597990e4d59;hp=9f1603462dce7a24d432698c4f46d7dcf1bf7c4f;p=quix0rs-gnu-social.git php notice fix -- misspelled bit --- diff --git a/lib/filteringnoticestream.php b/lib/filteringnoticestream.php index a3bdc08af6..ab39ad8ac9 100644 --- a/lib/filteringnoticestream.php +++ b/lib/filteringnoticestream.php @@ -107,7 +107,7 @@ abstract class FilteringNoticeStream extends NoticeStream $ids = array(); while ($notices->fetch()) { - $ids[] = $notice->id; + $ids[] = $notices->id; } return $ids;