diff options
Diffstat (limited to 'version.php')
-rw-r--r-- | version.php | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/version.php b/version.php new file mode 100644 index 000000000..a7a4776a4 --- /dev/null +++ b/version.php @@ -0,0 +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 + */ + +// YYYYMMDD = Elgg Date +// XX = Interim incrementer +$version = 2014110100; + +// Human-friendly version name +$release = '1.8.18'; |