From: toyomoyo Date: Thu, 8 Nov 2007 05:13:18 +0000 (+0000) Subject: 1.9 Beta 2 should not be read as 1.9.2 in environment page X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=4fa6cb4733f6160dc53c64bff2bf9e03d1bb5cc8;p=moodle.git 1.9 Beta 2 should not be read as 1.9.2 in environment page --- diff --git a/lib/environmentlib.php b/lib/environmentlib.php index 0cc0245573..614fe1342c 100644 --- a/lib/environmentlib.php +++ b/lib/environmentlib.php @@ -282,6 +282,14 @@ function print_moodle_environment($result, $environment_results) { * @return string the normalized version */ function normalize_version($version) { + +/// 1.9 Beta 2 should be read 1.9 on enviromental checks, not 1.9.2 +/// we can discard everything after the first space + $version = trim($version); + $versionarr = explode(" ",$version); + if (!empty($versionarr)) { + $version = $versionarr[0]; + } /// Replace everything but numbers and dots by dots $version = preg_replace('/[^\.\d]/', '.', $version); /// Combine multiple dots in one