diff options
Diffstat (limited to 'version.php')
-rw-r--r-- | version.php | 29 |
1 files changed, 13 insertions, 16 deletions
diff --git a/version.php b/version.php index 58963471a..cd33e34e1 100644 --- a/version.php +++ b/version.php @@ -1,19 +1,16 @@ <?php +/** + * Elgg version number. + * This file defines the current version of the core Elgg code being used. + * This is compared against the values stored in the database to determine + * whether upgrades should be performed. + * + * @package Elgg + * @subpackage Core + * @link http://elgg.org/ + */ - /** - * Elgg version number. - * This file defines the current version of the core Elgg code being used. - * This is compared against the values stored in the database to determine - * whether upgrades should be performed. - * - * @package Elgg - * @subpackage Core - * @link http://elgg.org/ - */ +$version = 2009091901; // YYYYMMDD = Elgg Date + // XX = Interim incrementer - $version = 2009091901; // YYYYMMDD = Elgg Date - // XX = Interim incrementer - - $release = '1.6.1'; // Human-friendly version name - -?> +$release = '1.6.1'; // Human-friendly version name
\ No newline at end of file |