From 4bc698eb1a59278d001fee539589fb899b95880d Mon Sep 17 00:00:00 2001 From: Sam Reed Date: Sun, 13 Mar 2011 21:12:57 +0000 Subject: [PATCH] Followup r33162, use $this->pager to fix undefined $pager --- includes/LogEventsList.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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() ); -- 2.20.1