MDL-37003 Fix repeated line in update notification email
authorDavid Mudrák <david@moodle.com>
Wed, 5 Dec 2012 23:03:25 +0000 (00:03 +0100)
committerEloy Lafuente (stronk7) <stronk7@moodle.org>
Thu, 6 Dec 2012 00:50:48 +0000 (01:50 +0100)
There was a problem experienced after 2.4.0 release because the version
of the 2.4.0 release was the same as 2.5dev release. So the version
value matched twice in the loop and the line was repeated in the email.

lib/pluginlib.php

index 25d480c..b740093 100644 (file)
@@ -1250,9 +1250,15 @@ class available_update_checker {
                 foreach ($componentupdates as $componentupdate) {
                     if ($componentupdate->version == $componentchange['version']) {
                         if ($component == 'core') {
-                            // in case of 'core' this is enough, we already know that the
-                            // $componentupdate is a real update with higher version
-                            $notifications[] = $componentupdate;
+                            // In case of 'core', we already know that the $componentupdate
+                            // is a real update with higher version ({@see self::get_update_info()}).
+                            // We just perform additional check for the release property as there
+                            // can be two Moodle releases having the same version (e.g. 2.4.0 and 2.5dev shortly
+                            // after the release). We can do that because we have the release info
+                            // always available for the core.
+                            if ((string)$componentupdate->release === (string)$componentchange['release']) {
+                                $notifications[] = $componentupdate;
+                            }
                         } else {
                             // Use the plugin_manager to check if the detected $componentchange
                             // is a real update with higher version. That is, the $componentchange