From: Brion Vibber Date: Fri, 14 Jul 2006 19:42:16 +0000 (+0000) Subject: fix syntax error X-Git-Tag: 1.31.0-rc.0~56249 X-Git-Url: https://git.cyclocoop.org/%242?a=commitdiff_plain;h=ef6c04c3f6367d78ec44894f6d8132eb03214453;p=lhc%2Fweb%2Fwiklou.git fix syntax error --- diff --git a/includes/ProfilerSimple.php b/includes/ProfilerSimple.php index 777a10fd67..adc8585dc8 100644 --- a/includes/ProfilerSimple.php +++ b/includes/ProfilerSimple.php @@ -86,7 +86,7 @@ class ProfilerSimple extends Profiler { } function getCpuTime($ru=null) { - if ( function_exists( getrusage() ) { + if ( function_exists( getrusage() ) ) { if ( $ru == null ) $ru = getrusage(); return ($ru['ru_utime.tv_sec'] + $ru['ru_stime.tv_sec'] + ($ru['ru_utime.tv_usec'] +