From: Aryeh Gregor Date: Wed, 2 Apr 2008 00:45:15 +0000 (+0000) Subject: (bug 13562) Misspelled option $wgUserNotifedOnAllChanges changed to $wgUserNotifiedOn... X-Git-Tag: 1.31.0-rc.0~48687 X-Git-Url: http://git.cyclocoop.org/%22%20.%20generer_url_ecrire%28%22auteur_infos%22%2C%20%22id_auteur=%24id%22%29%20.%20%22?a=commitdiff_plain;h=7faf44098fe98c0aef065d058bd7a7810ebed928;p=lhc%2Fweb%2Fwiklou.git (bug 13562) Misspelled option $wgUserNotifedOnAllChanges changed to $wgUserNotifiedOnAllChanges --- diff --git a/RELEASE-NOTES b/RELEASE-NOTES index a6338f2a97..c67c32497b 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -26,6 +26,8 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN * Set $wgUploadSizeWarning to false by default * Added $wgLBFactoryConf, for generic configuration of multi-master wiki farms * Removed $wgAlternateMaster, use $wgLBFactoryConf +* (bug 13562) Misspelled option $wgUserNotifedOnAllChanges changed to + $wgUserNotifiedOnAllChanges === New features in 1.13 === diff --git a/includes/DefaultSettings.php b/includes/DefaultSettings.php index 329c5c6a34..082412cd08 100644 --- a/includes/DefaultSettings.php +++ b/includes/DefaultSettings.php @@ -1391,7 +1391,7 @@ $wgEnotifUseJobQ = false; /** * Array of usernames who will be sent a notification email for every change which occurs on a wiki */ -$wgUsersNotifedOnAllChanges = array(); +$wgUsersNotifiedOnAllChanges = array(); /** Show watching users in recent changes, watchlist and page history views */ $wgRCShowWatchingUsers = false; # UPO diff --git a/includes/UserMailer.php b/includes/UserMailer.php index 49784ba3e5..6bf322f5aa 100644 --- a/includes/UserMailer.php +++ b/includes/UserMailer.php @@ -382,8 +382,8 @@ class EmailNotification { } } - global $wgUsersNotifedOnAllChanges; - foreach ( $wgUsersNotifedOnAllChanges as $name ) { + global $wgUsersNotifiedOnAllChanges; + foreach ( $wgUsersNotifiedOnAllChanges as $name ) { $user = User::newFromName( $name ); $this->compose( $user ); }