From 780b62663e3a00341e2582099ad5b363ad11ad05 Mon Sep 17 00:00:00 2001 From: Jeroen De Dauw Date: Tue, 24 Jan 2012 00:25:00 +0000 Subject: [PATCH] spacing fix --- includes/Pager.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/includes/Pager.php b/includes/Pager.php index a03a1d1d4c..7945587a80 100644 --- a/includes/Pager.php +++ b/includes/Pager.php @@ -782,11 +782,11 @@ abstract class ReverseChronologicalPager extends IndexPager { } function getDateCond( $year, $month ) { - $year = intval($year); - $month = intval($month); + $year = intval( $year ); + $month = intval( $month ); // Basic validity checks $this->mYear = $year > 0 ? $year : false; - $this->mMonth = ($month > 0 && $month < 13) ? $month : false; + $this->mMonth = ( $month > 0 && $month < 13 ) ? $month : false; // Given an optional year and month, we need to generate a timestamp // to use as "WHERE rev_timestamp <= result" // Examples: year = 2006 equals < 20070101 (+000000) -- 2.20.1