change arguments to Notice::publicStream
darcs-hash:20080928132747-5ed1f-9e9b6d8b91f855758ca4b269418f6d5d6e4a2ae0.gz
This commit is contained in:
parent
3544fca932
commit
d3d5942ae3
|
@ -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'));
|
||||
|
|
|
@ -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);
|
||||
);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user