Remove stray semicolon
authorRoan Kattouw <catrope@users.mediawiki.org>
Fri, 23 Jan 2009 20:39:54 +0000 (20:39 +0000)
committerRoan Kattouw <catrope@users.mediawiki.org>
Fri, 23 Jan 2009 20:39:54 +0000 (20:39 +0000)
includes/Profiler.php

index 0ea8e8a..da0ce3b 100644 (file)
@@ -92,7 +92,7 @@ class Profiler {
         * @param $functionname string
         */
        function profileOut($functionname) {
-               global $wgDebugFunctionEntry, $wgProfiling;;
+               global $wgDebugFunctionEntry, $wgProfiling;
                if( !$wgProfiling ) return;
                $memory = memory_get_usage();
                $time = $this->getTime();