fix navigation links for favorite feed

This commit is contained in:
Evan Prodromou 2010-12-13 13:08:38 -05:00
parent c5fee7573e
commit 156bd011af
1 changed files with 4 additions and 4 deletions

View File

@ -163,8 +163,8 @@ class AtompubfavoritefeedAction extends ApiAuthAction
$feed->addLink(common_local_url('AtomPubFavoriteFeed',
array('profile' =>
$this->_profile->id,
'page' =>
$this->_profile->id),
array('page' =>
$this->page - 1)),
array('rel' => 'prev',
'type' => 'application/atom+xml'));
@ -174,8 +174,8 @@ class AtompubfavoritefeedAction extends ApiAuthAction
$feed->addLink(common_local_url('AtomPubFavoriteFeed',
array('profile' =>
$this->_profile->id,
'page' =>
$this->_profile->id),
array('page' =>
$this->page + 1)),
array('rel' => 'next',
'type' => 'application/atom+xml'));