]> git.mjollnir.org Git - moodle.git/commitdiff
MDL-14645 PHP 5.2.0 now required on frontpage
authorskodak <skodak>
Thu, 1 May 2008 21:44:39 +0000 (21:44 +0000)
committerskodak <skodak>
Thu, 1 May 2008 21:44:39 +0000 (21:44 +0000)
admin/index.php

index edc96388f1f69adec680f4afa96bc7d1c9f487fc..a14d2894edf7893200dc6784655eaf18b6777a38 100644 (file)
@@ -8,7 +8,7 @@
 
 /// Check that PHP is of a sufficient version
 /// Moved here because older versions do not allow while(@ob_end_clean());
-    if (version_compare(phpversion(), "5.5.0") < 0) {
+    if (version_compare(phpversion(), "5.2.0") < 0) {
         $phpversion = phpversion();
         echo "Sorry, Moodle requires PHP 5.2.0 or later (currently using version $phpversion)";
         die;