]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Bad variable reference in ProfileNoticeStream
authorMikael Nordfeldth <mmn@hethane.se>
Mon, 12 May 2014 09:07:00 +0000 (11:07 +0200)
committerMikael Nordfeldth <mmn@hethane.se>
Mon, 12 May 2014 09:07:00 +0000 (11:07 +0200)
lib/profilenoticestream.php

index e299fccaf4a3254b88cb3ecc8508e78b963573dc..ac18e1c8cdd2505f2db3b51d16380c6c15ac3dc0 100644 (file)
@@ -62,7 +62,7 @@ class ProfileNoticeStream extends ScopingNoticeStream
                             $userProfile);
     }
 
-    function getNoticeIds($offset, $limit, $sinceId = null, $maxId = null)
+    function getNoticeIds($offset, $limit, $since_id=null, $max_id=null)
     {
         if ($this->impossibleStream()) {
             return array();
@@ -71,12 +71,12 @@ class ProfileNoticeStream extends ScopingNoticeStream
         }
     }
 
-    function getNotices($offset, $limit, $sinceId = null, $maxId = null)
+    function getNotices($offset, $limit, $since_id=null, $max_id=null)
     {
         if ($this->impossibleStream()) {
             return new ArrayWrapper(array());
         } else {
-            return parent::getNotices($offset, $limit, $sinceId, $maxId);
+            return parent::getNotices($offset, $limit, $since_id, $max_id);
         }
     }