mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/ReplaceText
synced 2024-11-23 22:33:48 +00:00
Replace deprecated WikiPage::doEditContent
Bug: T293737 Change-Id: Icfac41ca54bf2cd59847b095c3f309b7d3eacb21
This commit is contained in:
parent
e471d9eeb2
commit
ffce14c547
18
src/Job.php
18
src/Job.php
|
@ -21,8 +21,10 @@
|
|||
*/
|
||||
namespace MediaWiki\Extension\ReplaceText;
|
||||
|
||||
use CommentStoreComment;
|
||||
use Job as JobParent;
|
||||
use MediaWiki\MediaWikiServices;
|
||||
use MediaWiki\Revision\SlotRecord;
|
||||
use RequestContext;
|
||||
use Title;
|
||||
use User;
|
||||
|
@ -137,15 +139,11 @@ class Job extends JobParent {
|
|||
// If there's at least one replacement, modify the page,
|
||||
// using the passed-in edit summary.
|
||||
if ( $num_matches > 0 ) {
|
||||
// Change global $wgUser variable to the one
|
||||
// specified by the job only for the extent of
|
||||
// this replacement.
|
||||
global $wgUser;
|
||||
$actual_user = $wgUser;
|
||||
$wgUser = User::newFromId( $this->params['user_id'] );
|
||||
$edit_summary = $this->params['edit_summary'];
|
||||
$updater = $wikiPage->newPageUpdater( $current_user );
|
||||
$updater->setContent( SlotRecord::MAIN, new WikitextContent( $new_text ) );
|
||||
$edit_summary = CommentStoreComment::newUnsavedComment( $this->params['edit_summary'] );
|
||||
$flags = EDIT_MINOR;
|
||||
if ( $wgUser->isAllowed( 'bot' ) ) {
|
||||
if ( $permissionManager->userHasRight( $current_user, 'bot' ) ) {
|
||||
$flags |= EDIT_FORCE_BOT;
|
||||
}
|
||||
if ( isset( $this->params['doAnnounce'] ) &&
|
||||
|
@ -153,9 +151,7 @@ class Job extends JobParent {
|
|||
$flags |= EDIT_SUPPRESS_RC;
|
||||
# fixme log this action
|
||||
}
|
||||
$new_content = new WikitextContent( $new_text );
|
||||
$wikiPage->doEditContent( $new_content, $edit_summary, $flags );
|
||||
$wgUser = $actual_user;
|
||||
$updater->saveRevision( $edit_summary, $flags );
|
||||
}
|
||||
}
|
||||
return true;
|
||||
|
|
Loading…
Reference in a new issue