diff options
Diffstat (limited to 'version.php')
| -rw-r--r-- | version.php | 30 |
1 files changed, 14 insertions, 16 deletions
diff --git a/version.php b/version.php index 58963471a..a7a4776a4 100644 --- a/version.php +++ b/version.php @@ -1,19 +1,17 @@ <?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 + */ - /** - * 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/ - */ +// YYYYMMDD = Elgg Date +// XX = Interim incrementer +$version = 2014110100; - $version = 2009091901; // YYYYMMDD = Elgg Date - // XX = Interim incrementer - - $release = '1.6.1'; // Human-friendly version name - -?> +// Human-friendly version name +$release = '1.8.18'; |
