From: Alexandre Emsenhuber Date: Tue, 15 Jun 2010 20:09:19 +0000 (+0000) Subject: Fixed some doxygen warnings X-Git-Tag: 1.31.0-rc.0~36498 X-Git-Url: http://git.cyclocoop.org/%24self?a=commitdiff_plain;h=fa537d2d3fd684c0ed4593b251efd86d5bc3f50a;p=lhc%2Fweb%2Fwiklou.git Fixed some doxygen warnings --- diff --git a/includes/Article.php b/includes/Article.php index 3e876410a7..9dc80741ec 100644 --- a/includes/Article.php +++ b/includes/Article.php @@ -2043,6 +2043,7 @@ class Article { * @param $baseRevId the revision ID this edit was based off, if any * @param $user Optional user object, $wgUser will be used if not passed * @param $watchthis Watch the page if true, unwatch the page if false, do nothing if null + * @param $comment Boolean: whether the edit is a new section * @param $sectionanchor The section anchor for the page; used for redirecting the user back to the page * after the edit is successfully committed * @param $redirect If true, redirect the user back to the page after the edit is successfully committed diff --git a/includes/Block.php b/includes/Block.php index 4208623c2e..f4e14b23e5 100644 --- a/includes/Block.php +++ b/includes/Block.php @@ -283,7 +283,7 @@ class Block { * * @param $address String: IP address range * @param $killExpired Boolean: whether to delete expired rows while loading - * @param $userid Integer: if not 0, then sets ipb_anon_only + * @param $user Integer: if not 0, then sets ipb_anon_only * @return Boolean */ public function loadRange( $address, $killExpired = true, $user = 0 ) { diff --git a/includes/HttpFunctions.php b/includes/HttpFunctions.php index 3023c3c9ec..9a2a9290c5 100644 --- a/includes/HttpFunctions.php +++ b/includes/HttpFunctions.php @@ -515,7 +515,7 @@ class Cookie { * Sets a cookie. Used before a request to set up any individual * cookies. Used internally after a request to parse the * Set-Cookie headers. - * @param $name string the name of the cookie + * * @param $value string the value of the cookie * @param $attr array possible key/values: * expires A date string @@ -679,7 +679,9 @@ class CookieJar { /** * Parse the content of an Set-Cookie HTTP Response header. - * @param $cookie string + * + * @param $cookie String + * @param $domain String: cookie's domain */ public function parseCookieResponseHeader ( $cookie, $domain ) { $len = strlen( "Set-Cookie:" );