Merge "Defer addAutopromoteOnceGroups to transaction idle"

This commit is contained in:
jenkins-bot 2014-07-14 23:21:28 +00:00 committed by Gerrit Code Review
commit 12632fddfc

View file

@ -2047,7 +2047,9 @@ class WikiPage implements Page, IDBAccessObject {
wfRunHooks( 'PageContentSaveComplete', $hook_args );
// Promote user to any groups they meet the criteria for
$user->addAutopromoteOnceGroups( 'onEdit' );
$dbw->onTransactionIdle( function() use ( $user ) {
$user->addAutopromoteOnceGroups( 'onEdit' );
} );
wfProfileOut( __METHOD__ );
return $status;