change arguments to Notice::publicStream

darcs-hash:20080928132747-5ed1f-9e9b6d8b91f855758ca4b269418f6d5d6e4a2ae0.gz
This commit is contained in:
Evan Prodromou 2008-09-28 09:27:47 -04:00
parent 3544fca932
commit d3d5942ae3
2 changed files with 5 additions and 4 deletions

View File

@ -60,7 +60,8 @@ class PublicAction extends StreamAction {
function show_notices($page) {
$cnt = 0;
$notice = Notice::publicStream($page);
$notice = Notice::publicStream(($page-1)*NOTICES_PER_PAGE,
NOTICES_PER_PAGE + 1);
if ($notice) {
common_element_start('ul', array('id' => 'notices'));

View File

@ -290,7 +290,7 @@ class Notice extends Memcached_DataObject
return $wrapper;
}
function publicStream($page) {
function publicStream($offset=0, $limit=20) {
$qry = 'SELECT * FROM notice ';
@ -300,7 +300,7 @@ class Notice extends Memcached_DataObject
return Notice::getStream($qry,
'public',
($page-1)*NOTICES_PER_PAGE,
NOTICES_PER_PAGE + 1);
$offset, $limit);
);
}
}