Index: trunk/phase3/includes/SpecialBlockip.php |
— | — | @@ -61,7 +61,7 @@ |
62 | 62 | $this->BlockCreateAccount = $wgRequest->getBool( 'wpCreateAccount', $byDefault ); |
63 | 63 | $this->BlockEnableAutoblock = $wgRequest->getBool( 'wpEnableAutoblock', $byDefault ); |
64 | 64 | # Re-check user's rights to hide names, very serious, defaults to 0 |
65 | | - $this->BlockHideName = $wgRequest->getBool( 'wpHideName', 0 ) && $wgUser->isAllowed( 'hideuser' ); |
| 65 | + $this->BlockHideName = ( $wgRequest->getBool( 'wpHideName', 0 ) && $wgUser->isAllowed( 'hideuser' ) ) ? 1 : 0; |
66 | 66 | } |
67 | 67 | |
68 | 68 | function showForm( $err ) { |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -91,6 +91,7 @@ |
92 | 92 | * (bug 908) Unexistent special pages now generate a red link. |
93 | 93 | * (bug 7899) Added \hline and \vline to the list of allowed TeX commands |
94 | 94 | * (bug 7993) support mathematical symbol classes |
| 95 | +* (bug 10007) Allow Block IP to work with Postgrs again. |
95 | 96 | |
96 | 97 | == MediaWiki API changes since 1.10 == |
97 | 98 | |