Reverted r42528. Links with href="#" make firefox scroll to the top of the page,...
[mediawiki.git] / includes / EnotifNotifyJob.php
blob31fcb0d5c677f880959a08db0e916051553aacc9
1 <?php
3 /**
4 * Job for email notification mails
6 * @ingroup JobQueue
7 */
8 class EnotifNotifyJob extends Job {
10 function __construct( $title, $params, $id = 0 ) {
11 parent::__construct( 'enotifNotify', $title, $params, $id );
14 function run() {
15 $enotif = new EmailNotification();
16 // Get the user from ID (rename safe). Anons are 0, so defer to name.
17 if( isset($this->params['editorID']) && $this->params['editorID'] ) {
18 $editor = User::newFromId( $this->params['editorID'] );
19 // B/C, only the name might be given.
20 } else {
21 $editor = User::newFromName( $this->params['editor'], false );
23 $enotif->actuallyNotifyOnPageChange(
24 $editor,
25 $this->title,
26 $this->params['timestamp'],
27 $this->params['summary'],
28 $this->params['minorEdit'],
29 $this->params['oldid']
31 return true;