From 6479881d827acf7ade2f310089807fc72b86d76f Mon Sep 17 00:00:00 2001 From: =?utf8?q?=C3=86var=20Arnfj=C3=B6r=C3=B0=20Bjarmason?= Date: Fri, 26 Aug 2005 13:47:38 +0000 Subject: [PATCH] * Postfix --/++ => Prefix --/++ --- includes/GlobalFunctions.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/GlobalFunctions.php b/includes/GlobalFunctions.php index f5ef44b72e..d33870929a 100644 --- a/includes/GlobalFunctions.php +++ b/includes/GlobalFunctions.php @@ -1051,7 +1051,7 @@ function wfSuppressWarnings( $end = false ) { if ( $end ) { if ( $suppressCount ) { - $suppressCount --; + --$suppressCount; if ( !$suppressCount ) { error_reporting( $originalLevel ); } @@ -1060,7 +1060,7 @@ function wfSuppressWarnings( $end = false ) { if ( !$suppressCount ) { $originalLevel = error_reporting( E_ALL & ~( E_WARNING | E_NOTICE ) ); } - $suppressCount++; + ++$suppressCount; } } -- 2.20.1