Talk:How To Use Replace Text

From My Wiki
Revision as of 12:17, 27 July 2009 by imported>Tlosk's Bot (Created page with '== Modification == This modification forces the bot flag to be respected so that bot edits do not display in the recent changes (unless the Show Bots option is selected). <pre> …')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Modification

This modification forces the bot flag to be respected so that bot edits do not display in the recent changes (unless the Show Bots option is selected).

$flags = EDIT_MINOR;

CHANGED TO

if ($wgUser->isAllowed('bot')) {
 $flags = EDIT_MINOR | EDIT_FORCE_BOT;
} else {
    $flags = EDIT_MINOR;
  }