Index: trunk/phase3/includes/Title.php |
— | — | @@ -1088,7 +1088,7 @@ |
1089 | 1089 | } |
1090 | 1090 | |
1091 | 1091 | // Edit blocks should not affect reading. Account creation blocks handled at userlogin. |
1092 | | - if ( $user->isBlockedFrom( $this ) && $action != 'read' && $action != 'createaccount' ) { |
| 1092 | + if ( $action != 'read' && $action != 'createaccount' && $user->isBlockedFrom( $this ) ) { |
1093 | 1093 | $block = $user->mBlock; |
1094 | 1094 | |
1095 | 1095 | // This is from OutputPage::blockedPage |