Index: trunk/phase3/includes/Article.php |
— | — | @@ -2043,6 +2043,7 @@ |
2044 | 2044 | * @param $baseRevId the revision ID this edit was based off, if any |
2045 | 2045 | * @param $user Optional user object, $wgUser will be used if not passed |
2046 | 2046 | * @param $watchthis Watch the page if true, unwatch the page if false, do nothing if null |
| 2047 | + * @param $comment Boolean: whether the edit is a new section |
2047 | 2048 | * @param $sectionanchor The section anchor for the page; used for redirecting the user back to the page |
2048 | 2049 | * after the edit is successfully committed |
2049 | 2050 | * @param $redirect If true, redirect the user back to the page after the edit is successfully committed |
Index: trunk/phase3/includes/HttpFunctions.php |
— | — | @@ -515,7 +515,7 @@ |
516 | 516 | * Sets a cookie. Used before a request to set up any individual |
517 | 517 | * cookies. Used internally after a request to parse the |
518 | 518 | * Set-Cookie headers. |
519 | | - * @param $name string the name of the cookie |
| 519 | + * |
520 | 520 | * @param $value string the value of the cookie |
521 | 521 | * @param $attr array possible key/values: |
522 | 522 | * expires A date string |
— | — | @@ -679,7 +679,9 @@ |
680 | 680 | |
681 | 681 | /** |
682 | 682 | * Parse the content of an Set-Cookie HTTP Response header. |
683 | | - * @param $cookie string |
| 683 | + * |
| 684 | + * @param $cookie String |
| 685 | + * @param $domain String: cookie's domain |
684 | 686 | */ |
685 | 687 | public function parseCookieResponseHeader ( $cookie, $domain ) { |
686 | 688 | $len = strlen( "Set-Cookie:" ); |
Index: trunk/phase3/includes/Block.php |
— | — | @@ -283,7 +283,7 @@ |
284 | 284 | * |
285 | 285 | * @param $address String: IP address range |
286 | 286 | * @param $killExpired Boolean: whether to delete expired rows while loading |
287 | | - * @param $userid Integer: if not 0, then sets ipb_anon_only |
| 287 | + * @param $user Integer: if not 0, then sets ipb_anon_only |
288 | 288 | * @return Boolean |
289 | 289 | */ |
290 | 290 | public function loadRange( $address, $killExpired = true, $user = 0 ) { |