]> gitweb.fluxo.info Git - lorea/elgg.git/commitdiff
Added an upgrade to enable the search plugin.
authorbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>
Tue, 5 Jan 2010 15:49:07 +0000 (15:49 +0000)
committerbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>
Tue, 5 Jan 2010 15:49:07 +0000 (15:49 +0000)
Bumped internal version number.

git-svn-id: http://code.elgg.org/elgg/trunk@3785 36083f99-b078-4883-b0ff-0f9b5a30f544

engine/lib/upgrades/2010010501.php [new file with mode: 0644]
version.php

diff --git a/engine/lib/upgrades/2010010501.php b/engine/lib/upgrades/2010010501.php
new file mode 100644 (file)
index 0000000..1e83caa
--- /dev/null
@@ -0,0 +1,8 @@
+<?php
+
+global $CONFIG;
+
+/**
+ * Enable the search plugin
+ */    
+enable_plugin('search', $CONFIG->site->guid);
index 7b46493b0a58e719a41014e9a15b0ea02130a8d1..c8fb224d768b266e0a3f769e86ed73a94cc47a01 100644 (file)
@@ -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';