From: Sam Reed Date: Sun, 13 Mar 2011 21:12:57 +0000 (+0000) Subject: Followup r33162, use $this->pager to fix undefined $pager X-Git-Tag: 1.31.0-rc.0~31449 X-Git-Url: http://git.cyclocoop.org/ecrire?a=commitdiff_plain;h=4bc698eb1a59278d001fee539589fb899b95880d;p=lhc%2Fweb%2Fwiklou.git Followup r33162, use $this->pager to fix undefined $pager --- diff --git a/includes/LogEventsList.php b/includes/LogEventsList.php index 860ea9c0dd..96900cb2ab 100644 --- a/includes/LogEventsList.php +++ b/includes/LogEventsList.php @@ -1091,7 +1091,7 @@ class LogViewer { public function show() { global $wgOut; # Set title and add header - $this->list->showHeader( $pager->getType() ); + $this->list->showHeader( $this->pager->getType() ); # Show form options $this->list->showOptions( $this->pager->getType(), $this->pager->getUser(), $this->pager->getPage(), $this->pager->getPattern(), $this->pager->getYear(), $this->pager->getMonth() );