From 7faf44098fe98c0aef065d058bd7a7810ebed928 Mon Sep 17 00:00:00 2001 From: Aryeh Gregor Date: Wed, 2 Apr 2008 00:45:15 +0000 Subject: [PATCH] (bug 13562) Misspelled option $wgUserNotifedOnAllChanges changed to $wgUserNotifiedOnAllChanges --- RELEASE-NOTES | 2 ++ includes/DefaultSettings.php | 2 +- includes/UserMailer.php | 4 ++-- 3 files changed, 5 insertions(+), 3 deletions(-) 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 ); } -- 2.20.1