diff options
-rw-r--r-- | engine/lib/upgrades/2010010501.php | 8 | ||||
-rw-r--r-- | version.php | 8 |
2 files changed, 13 insertions, 3 deletions
diff --git a/engine/lib/upgrades/2010010501.php b/engine/lib/upgrades/2010010501.php new file mode 100644 index 000000000..1e83caa55 --- /dev/null +++ b/engine/lib/upgrades/2010010501.php @@ -0,0 +1,8 @@ +<?php + +global $CONFIG; + +/** + * Enable the search plugin + */ +enable_plugin('search', $CONFIG->site->guid); diff --git a/version.php b/version.php index 7b46493b0..c8fb224d7 100644 --- a/version.php +++ b/version.php @@ -10,7 +10,9 @@ * @link http://elgg.org/ */ -$version = 2009102801; // YYYYMMDD = Elgg Date - // XX = Interim incrementer +// YYYYMMDD = Elgg Date +// XX = Interim incrementer +$version = 2010010501; -$release = '1.7a1'; // Human-friendly version name +// Human-friendly version name +$release = '1.7a1'; |