(bug 22647) Add category details in search results. Contributed by Lejonel.
[lhc/web/wiklou.git] / includes / ProfilerStub.php
index 4683495..575fa7e 100644 (file)
@@ -1,18 +1,20 @@
 <?php
 /**
  * Stub profiling functions
- * @addtogroup Profiler
+ * @file
+ * @ingroup Profiler
  */
 
 /** backward compatibility */
 $wgProfiling = false;
+$wgProfiler = null;
 
 /** is setproctitle function available ? */
 $haveProctitle = function_exists( 'setproctitle' );
 
 /**
  * Begin profiling of a function
- * @param string $fn
+ * @param $fn string
  */
 function wfProfileIn( $fn = '' ) {
        global $hackwhere, $wgDBname, $haveProctitle;
@@ -24,7 +26,7 @@ function wfProfileIn( $fn = '' ) {
 
 /**
  * Stop profiling of a function
- * @param string $fn
+ * @param $fn string
  */
 function wfProfileOut( $fn = '' ) {
        global $hackwhere, $wgDBname, $haveProctitle;