Index: trunk/extensions/PrivateDomains/SpecialPrivateDomains.php |
— | — | @@ -29,11 +29,7 @@ |
30 | 30 | $nameTitle = Title::newFromText( $name, NS_MEDIAWIKI ); |
31 | 31 | $article = new Article( $nameTitle ); |
32 | 32 | |
33 | | - if ( $nameTitle->exists() ) { |
34 | | - $article->quickEdit( $value ); |
35 | | - } else { |
36 | | - $article->doEdit( $value, '' ); |
37 | | - } |
| 33 | + $article->doEdit( $value, '' ); |
38 | 34 | } |
39 | 35 | |
40 | 36 | /** |