From: Alexandre Emsenhuber Date: Sun, 14 Feb 2010 21:23:38 +0000 (+0000) Subject: Fixed some doxygen warnings X-Git-Tag: 1.31.0-rc.0~37764 X-Git-Url: http://git.cyclocoop.org/%24image?a=commitdiff_plain;h=e254b8e9712281f076720ec823de34b30150f702;p=lhc%2Fweb%2Fwiklou.git Fixed some doxygen warnings --- diff --git a/includes/parser/CoreParserFunctions.php b/includes/parser/CoreParserFunctions.php index 0f4d54514d..affc3e40a3 100644 --- a/includes/parser/CoreParserFunctions.php +++ b/includes/parser/CoreParserFunctions.php @@ -234,9 +234,9 @@ class CoreParserFunctions { * Override the title of the page when viewed, provided we've been given a * title which will normalise to the canonical title * - * @param Parser $parser Parent parser - * @param string $text Desired title text - * @return string + * @param $parser Parser: parent parser + * @param $text String: desired title text + * @return String */ static function displaytitle( $parser, $text = '' ) { global $wgRestrictDisplayTitle; @@ -492,11 +492,11 @@ class CoreParserFunctions { * Return the size of the given page, or 0 if it's nonexistent. This is an * expensive parser function and can't be called too many times per page. * - * @FIXME This doesn't work correctly on preview for getting the size of - * the current page. - * @FIXME Title::getLength() documentation claims that it adds things to - * the link cache, so the local cache here should be unnecessary, but in - * fact calling getLength() repeatedly for the same $page does seem to + * @todo Fixme: This doesn't work correctly on preview for getting the size + * of the current page. + * @todo Fixme: Title::getLength() documentation claims that it adds things + * to the link cache, so the local cache here should be unnecessary, but + * in fact calling getLength() repeatedly for the same $page does seem to * run one query for each call? */ static function pagesize( $parser, $page = '', $raw = null ) {