Fixed some doxygen warnings
authorAlexandre Emsenhuber <ialex@users.mediawiki.org>
Tue, 15 Jun 2010 20:09:19 +0000 (20:09 +0000)
committerAlexandre Emsenhuber <ialex@users.mediawiki.org>
Tue, 15 Jun 2010 20:09:19 +0000 (20:09 +0000)
includes/Article.php
includes/Block.php
includes/HttpFunctions.php

index 3e87641..9dc8074 100644 (file)
@@ -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
index 4208623..f4e14b2 100644 (file)
@@ -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 ) {
index 3023c3c..9a2a929 100644 (file)
@@ -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:" );