don't send unused variable for streams

This commit is contained in:
Evan Prodromou 2009-07-04 01:43:35 -04:00
parent 66a4a60e0b
commit cb019f7aad

View 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);