]> git.mjollnir.org Git - moodle.git/commitdiff
Tidied up a bit, and removed the CVS version which caused some people confusion
authormoodler <moodler>
Mon, 27 Sep 2004 13:50:55 +0000 (13:50 +0000)
committermoodler <moodler>
Mon, 27 Sep 2004 13:50:55 +0000 (13:50 +0000)
version.php

index 2433f968c9ba75bab490e361ada248ffe9663b1e..e7d655859fd6603362683f6dc90c538acf389aa1 100644 (file)
@@ -1,12 +1,14 @@
-<?PHP  //$Id$
-// This file defines the current version of the
-// Moodle code that is being used.  This can be
-// compared against the values stored in the
-// database to determine whether upgrades should
-// be performed (see lib/db/*.php)
+<?php 
 
-$version = 2004092000;   // The current version is a date (YYYYMMDDXX)
+// MOODLE VERSION INFORMATION
 
-$release = "1.5 unstable development";   // User-friendly version number
+// This file defines the current version of the core Moodle code being used.  
+// This is compared against the values stored in the database to determine 
+// whether upgrades should be performed (see lib/db/*.php)
+
+   $version = 2004092700;  // YYYYMMDD = date of first major branch release 1.4
+                           //       XY = increments within a single day
+
+   $release = '1.5 UNSTABLE DEVELOPMENT';    // Human-friendly version name
 
 ?>