diff options
author | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-01-05 15:49:07 +0000 |
---|---|---|
committer | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-01-05 15:49:07 +0000 |
commit | 017028e0b971272cdcf6d848b65b97d0daa8d452 (patch) | |
tree | 1e7ae23b48091cab9a2f0547d33d4447af33e99f | |
parent | 11861a84c4ea8c462c735a6652caa0f3eee7bca7 (diff) | |
download | elgg-017028e0b971272cdcf6d848b65b97d0daa8d452.tar.gz elgg-017028e0b971272cdcf6d848b65b97d0daa8d452.tar.bz2 |
Added an upgrade to enable the search plugin.
Bumped internal version number.
git-svn-id: http://code.elgg.org/elgg/trunk@3785 36083f99-b078-4883-b0ff-0f9b5a30f544
-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'; |