For MediaWiki (recent comments | status changes | tags | authors | states | release notes | statistics)
Index: trunk/phase3/includes/UserMailer.php =================================================================== --- trunk/phase3/includes/UserMailer.php (revision 32682) +++ trunk/phase3/includes/UserMailer.php (revision 32683) @@ -382,8 +382,8 @@ } } - global $wgUsersNotifedOnAllChanges; - foreach ( $wgUsersNotifedOnAllChanges as $name ) { + global $wgUsersNotifiedOnAllChanges; + foreach ( $wgUsersNotifiedOnAllChanges as $name ) { $user = User::newFromName( $name ); $this->compose( $user ); } Index: trunk/phase3/includes/DefaultSettings.php =================================================================== --- trunk/phase3/includes/DefaultSettings.php (revision 32682) +++ trunk/phase3/includes/DefaultSettings.php (revision 32683) @@ -1391,7 +1391,7 @@ /** * 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: trunk/phase3/RELEASE-NOTES =================================================================== --- trunk/phase3/RELEASE-NOTES (revision 32682) +++ trunk/phase3/RELEASE-NOTES (revision 32683) @@ -26,6 +26,8 @@ * 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 ===