diff options
Diffstat (limited to 'version.php')
| -rw-r--r-- | version.php | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/version.php b/version.php index f2817c5e9..a7a4776a4 100644 --- a/version.php +++ b/version.php @@ -1,8 +1,17 @@ <?php - /** - * Version of this plugin. - * Used for the upgrade system. + * 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 */ -$version = 2012020901; +// YYYYMMDD = Elgg Date +// XX = Interim incrementer +$version = 2014110100; + +// Human-friendly version name +$release = '1.8.18'; |
