From: Brion Vibber Date: Tue, 16 Aug 2005 23:19:54 +0000 (+0000) Subject: adjust whitespace (spaces -> tabs) X-Git-Tag: 1.6.0~1928 X-Git-Url: https://git.cyclocoop.org/%242?a=commitdiff_plain;h=caf1cb4942fc41778c296de5436beacb553a3f23;p=lhc%2Fweb%2Fwiklou.git adjust whitespace (spaces -> tabs) --- diff --git a/includes/Setup.php b/includes/Setup.php index 6e3f28f2d8..670767768f 100644 --- a/includes/Setup.php +++ b/includes/Setup.php @@ -25,23 +25,23 @@ if( !isset( $wgProfiling ) ) $wgProfiling = false; if ( $wgProfiling and (0 == rand() % $wgProfileSampleRate ) ) { - require_once( 'Profiling.php' ); + require_once( 'Profiling.php' ); } else { - function wfProfileIn( $fn = '' ) { - global $hackwhere, $wgDBname; - $hackwhere[] = $fn; - if (function_exists("setproctitle")) - setproctitle($fn . " [$wgDBname]"); - } - function wfProfileOut( $fn = '' ) { - global $hackwhere, $wgDBname; - if (count($hackwhere)) - array_pop($hackwhere); - if (function_exists("setproctitle") && count($hackwhere)) - setproctitle($hackwhere[count($hackwhere)-1] . " [$wgDBname]"); - } - function wfGetProfilingOutput( $s, $e ) {} - function wfProfileClose() {} + function wfProfileIn( $fn = '' ) { + global $hackwhere, $wgDBname; + $hackwhere[] = $fn; + if (function_exists("setproctitle")) + setproctitle($fn . " [$wgDBname]"); + } + function wfProfileOut( $fn = '' ) { + global $hackwhere, $wgDBname; + if (count($hackwhere)) + array_pop($hackwhere); + if (function_exists("setproctitle") && count($hackwhere)) + setproctitle($hackwhere[count($hackwhere)-1] . " [$wgDBname]"); + } + function wfGetProfilingOutput( $s, $e ) {} + function wfProfileClose() {} function wfLogProfilingData() {} }