From: Alexandre Emsenhuber Date: Fri, 11 Dec 2009 22:19:37 +0000 (+0000) Subject: fix some doxygen errors X-Git-Tag: 1.31.0-rc.0~38563 X-Git-Url: http://git.cyclocoop.org/%22.%24h.%22?a=commitdiff_plain;h=bccd2ad03b6dcf54ee6ad6ca34043dae402f7e04;p=lhc%2Fweb%2Fwiklou.git fix some doxygen errors --- diff --git a/includes/Profiler.php b/includes/Profiler.php index 9bd9e9a5e1..817b71ab2c 100644 --- a/includes/Profiler.php +++ b/includes/Profiler.php @@ -12,7 +12,7 @@ $wgProfiling = true; /** * Begin profiling of a function - * @param $functioname name of the function we will profile + * @param $functionname name of the function we will profile */ function wfProfileIn( $functionname ) { global $wgProfiler; @@ -21,7 +21,7 @@ function wfProfileIn( $functionname ) { /** * Stop profiling of a function - * @param $functioname name of the function we have profiled + * @param $functionname name of the function we have profiled */ function wfProfileOut( $functionname = 'missing' ) { global $wgProfiler; @@ -31,8 +31,8 @@ function wfProfileOut( $functionname = 'missing' ) { /** * Returns a profiling output to be stored in debug file * - * @param float $start - * @param float $elapsed time elapsed since the beginning of the request + * @param $start Float + * @param $elapsed Float: time elapsed since the beginning of the request */ function wfGetProfilingOutput( $start, $elapsed ) { global $wgProfiler; diff --git a/includes/ProxyTools.php b/includes/ProxyTools.php index a0ee5ca8e0..5719e3e8d6 100644 --- a/includes/ProxyTools.php +++ b/includes/ProxyTools.php @@ -124,7 +124,7 @@ function wfGetIP() { * Checks if an IP is a trusted proxy providor * Useful to tell if X-Fowarded-For data is possibly bogus * Squid cache servers for the site and AOL are whitelisted - * @param string $ip + * @param $ip String * @return bool */ function wfIsTrustedProxy( $ip ) {