]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
don't send unused variable for streams
authorEvan Prodromou <evan@controlyourself.ca>
Sat, 4 Jul 2009 05:43:35 +0000 (01:43 -0400)
committerEvan Prodromou <evan@controlyourself.ca>
Sat, 4 Jul 2009 05:43:35 +0000 (01:43 -0400)
classes/Notice.php

index 8a018068aee6289580217df68b627936985442ab..5ec0692d90e5e3eadffc2da8a529be7263b6347f 100644 (file)
@@ -1210,7 +1210,7 @@ class Notice extends Memcached_DataObject
             $window = explode(',', $laststr);
             $last_id = $window[0];
             $new_ids = call_user_func_array($fn, array_merge($args, array(0, NOTICE_CACHE_WINDOW,
-                                                                          $last_id, 0, null, $tag)));
+                                                                          $last_id, 0, null)));
 
             $new_window = array_merge($new_ids, $window);
 
@@ -1225,7 +1225,7 @@ class Notice extends Memcached_DataObject
         }
 
         $window = call_user_func_array($fn, array_merge($args, array(0, NOTICE_CACHE_WINDOW,
-                                                                     0, 0, null, $tag)));
+                                                                     0, 0, null)));
 
         $windowstr = implode(',', $window);