diff options
author | Pierre Schmitz <pierre@archlinux.de> | 2012-05-03 13:01:35 +0200 |
---|---|---|
committer | Pierre Schmitz <pierre@archlinux.de> | 2012-05-03 13:01:35 +0200 |
commit | d9022f63880ce039446fba8364f68e656b7bf4cb (patch) | |
tree | 16b40fbf17bf7c9ee6f4ead25b16dd192378050a /maintenance/importTextFile.php | |
parent | 27cf83d177256813e2e802241085fce5dd0f3fb9 (diff) |
Update to MediaWiki 1.19.0
Diffstat (limited to 'maintenance/importTextFile.php')
-rw-r--r-- | maintenance/importTextFile.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/maintenance/importTextFile.php b/maintenance/importTextFile.php index b78ae039..ec9ff001 100644 --- a/maintenance/importTextFile.php +++ b/maintenance/importTextFile.php @@ -57,8 +57,8 @@ if ( count( $args ) < 1 || isset( $options['help'] ) ) { $flags = 0 | ( isset( $options['norc'] ) ? EDIT_SUPPRESS_RC : 0 ); echo( "\nPerforming edit..." ); - $article = new Article( $title ); - $article->doEdit( $text, $comment, $flags ); + $page = WikiPage::factory( $title ); + $page->doEdit( $text, $comment, $flags, false, $user ); echo( "done.\n" ); } else { |