aboutsummaryrefslogtreecommitdiff
path: root/version.php
diff options
context:
space:
mode:
Diffstat (limited to 'version.php')
-rw-r--r--version.php16
1 files changed, 13 insertions, 3 deletions
diff --git a/version.php b/version.php
index 68817c053..07a08ab4a 100644
--- a/version.php
+++ b/version.php
@@ -1,7 +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 = 2013012900;
+
+// Human-friendly version name
+$release = '1.8.13';