Index: trunk/phase3/includes/Title.php |
— | — | @@ -931,7 +931,7 @@ |
932 | 932 | /** |
933 | 933 | * Does the title correspond to a protected article? |
934 | 934 | * @param string $what the action the page is protected from, |
935 | | - * by default checks move and edit |
| 935 | + * by default checks move and edit |
936 | 936 | * @return boolean |
937 | 937 | */ |
938 | 938 | public function isProtected( $action = '' ) { |
— | — | @@ -980,7 +980,7 @@ |
981 | 981 | return $this->mWatched; |
982 | 982 | } |
983 | 983 | |
984 | | - /** |
| 984 | + /** |
985 | 985 | * Can $wgUser perform $action on this page? |
986 | 986 | * This skips potentially expensive cascading permission checks. |
987 | 987 | * |
— | — | @@ -999,7 +999,7 @@ |
1000 | 1000 | /** |
1001 | 1001 | * Determines if $wgUser is unable to edit this page because it has been protected |
1002 | 1002 | * by $wgNamespaceProtection. |
1003 | | - * |
| 1003 | + * |
1004 | 1004 | * @return boolean |
1005 | 1005 | */ |
1006 | 1006 | public function isNamespaceProtected() { |
— | — | @@ -1013,7 +1013,7 @@ |
1014 | 1014 | return false; |
1015 | 1015 | } |
1016 | 1016 | |
1017 | | - /** |
| 1017 | + /** |
1018 | 1018 | * Can $wgUser perform $action on this page? |
1019 | 1019 | * @param string $action action that permission needs to be checked for |
1020 | 1020 | * @param bool $doExpensiveQueries Set this to false to avoid doing unnecessary queries. |
— | — | @@ -1024,7 +1024,7 @@ |
1025 | 1025 | return ( $this->getUserPermissionsErrorsInternal( $action, $wgUser, $doExpensiveQueries ) === array()); |
1026 | 1026 | } |
1027 | 1027 | |
1028 | | - /** |
| 1028 | + /** |
1029 | 1029 | * Can $user perform $action on this page? |
1030 | 1030 | * @param string $action action that permission needs to be checked for |
1031 | 1031 | * @param bool $doExpensiveQueries Set this to false to avoid doing unnecessary queries. |