app/controllers/UserController.php: typofix, should be paginate() and not pageinate()
This commit is contained in:
parent
e432b3ab87
commit
a8edd06011
1 changed files with 2 additions and 2 deletions
|
|
@ -105,10 +105,10 @@ class UserController extends ControllerBase
|
|||
|
||||
$paginator = ActivityLog::getPaginationList($user->getId(), $page);
|
||||
|
||||
$this->view->page = $paginator->pageinate();
|
||||
$this->view->page = $paginator->paginate();
|
||||
$this->view->pagination_url = '/user/activity/';
|
||||
}
|
||||
|
||||
|
||||
public function oauthDisconnectAction($provider, $last_unlink_confirmed = false)
|
||||
{
|
||||
$user = $this->_getAuth()->getUser();
|
||||
|
|
|
|||
Reference in a new issue