(bug 13562) Misspelled option $wgUserNotifedOnAllChanges changed to $wgUserNotifiedOn...
authorAryeh Gregor <simetrical@users.mediawiki.org>
Wed, 2 Apr 2008 00:45:15 +0000 (00:45 +0000)
committerAryeh Gregor <simetrical@users.mediawiki.org>
Wed, 2 Apr 2008 00:45:15 +0000 (00:45 +0000)
RELEASE-NOTES
includes/DefaultSettings.php
includes/UserMailer.php

index a6338f2..c67c324 100644 (file)
@@ -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 ===
 
index 329c5c6..082412c 100644 (file)
@@ -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
index 49784ba..6bf322f 100644 (file)
@@ -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 );
                }