Index: trunk/extensions/ContactPage/SpecialContact.php |
— | — | @@ -44,7 +44,7 @@ |
45 | 45 | $action = $wgRequest->getVal( 'action' ); |
46 | 46 | |
47 | 47 | $nu = User::newFromName( $wgContactUser ); |
48 | | - if( is_null( $nu ) || !$nu->canReceiveEmail() ) { |
| 48 | + if( is_null( $nu ) || $nu->canReceiveEmail() ) { |
49 | 49 | wfDebug( "Target is invalid user or can't receive.\n" ); |
50 | 50 | $wgOut->showErrorPage( 'noemailtitle', 'noemailtext' ); |
51 | 51 | return; |
Index: trunk/extensions/ContactPage/README |
— | — | @@ -51,7 +51,7 @@ |
52 | 52 | |
53 | 53 | $wgCaptchaTriggers['contactpage'] = true; |
54 | 54 | |
55 | | -== Costumization == |
| 55 | +== Customization == |
56 | 56 | |
57 | 57 | [[Special:Contact]] calls the default formular. |
58 | 58 | Pagetext: [[MediaWiki:contactpage-pagetext]] |