shownotices takes user rather than profile in showstream
darcs-hash:20080928120616-5ed1f-fc0b136afff897a2d69f88dd83b6fc5df4f675b6.gz
This commit is contained in:
parent
02a3f24b92
commit
3544fca932
|
@ -58,7 +58,7 @@ class ShowstreamAction extends StreamAction {
|
||||||
|
|
||||||
$this->show_profile($profile);
|
$this->show_profile($profile);
|
||||||
|
|
||||||
$this->show_notices($profile);
|
$this->show_notices($user);
|
||||||
|
|
||||||
common_show_footer();
|
common_show_footer();
|
||||||
}
|
}
|
||||||
|
@ -335,7 +335,7 @@ class ShowstreamAction extends StreamAction {
|
||||||
common_element_end('div');
|
common_element_end('div');
|
||||||
}
|
}
|
||||||
|
|
||||||
function show_notices($profile) {
|
function show_notices($user) {
|
||||||
|
|
||||||
$page = ($this->arg('page')) ? ($this->arg('page')+0) : 1;
|
$page = ($this->arg('page')) ? ($this->arg('page')+0) : 1;
|
||||||
|
|
||||||
|
@ -359,7 +359,7 @@ class ShowstreamAction extends StreamAction {
|
||||||
}
|
}
|
||||||
|
|
||||||
common_pagination($page>1, $cnt>NOTICES_PER_PAGE, $page,
|
common_pagination($page>1, $cnt>NOTICES_PER_PAGE, $page,
|
||||||
'showstream', array('nickname' => $profile->nickname));
|
'showstream', array('nickname' => $user->nickname));
|
||||||
}
|
}
|
||||||
|
|
||||||
function show_last_notice($profile) {
|
function show_last_notice($profile) {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user