From 35d27b219c3a204e52368031665658fab547b143 Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Mon, 27 Oct 2008 07:20:12 +0000 Subject: [PATCH] Fix debug line --- includes/LogEventsList.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/LogEventsList.php b/includes/LogEventsList.php index 2f5664c112..61ecf58022 100644 --- a/includes/LogEventsList.php +++ b/includes/LogEventsList.php @@ -80,7 +80,7 @@ class LogEventsList { $this->getTitleInput( $page ) . "\n" . ( !$wgMiserMode ? ($this->getTitlePattern( $pattern )."\n") : "" ) . "

" . $this->getDateMenu( $y, $m ) . "\n" . - ( empty($filter) ? "

".$this->getFilterLinks( $type, $filter )."\n" : "" ) . + ( !empty($filter) ? "

".$this->getFilterLinks( $type, $filter )."\n" : "" ) . Xml::submitButton( wfMsg( 'allpagessubmit' ) ) . "

\n" . "" ); -- 2.20.1