From: Ævar Arnfjörð Bjarmason Date: Fri, 26 Aug 2005 13:47:38 +0000 (+0000) Subject: * Postfix --/++ => Prefix --/++ X-Git-Tag: 1.6.0~1800 X-Git-Url: http://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/operations/recherche.php?a=commitdiff_plain;h=6479881d827acf7ade2f310089807fc72b86d76f;p=lhc%2Fweb%2Fwiklou.git * Postfix --/++ => Prefix --/++ --- 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; } }