aboutsummaryrefslogtreecommitdiff
path: root/engine/lib/install.php
diff options
context:
space:
mode:
authorcash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-11-16 00:35:43 +0000
committercash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-11-16 00:35:43 +0000
commit9220cb15f17dc6584f10b3899e8e7359487673c1 (patch)
treec84c3815a940256dfa490b5f009a37d3c6c379e7 /engine/lib/install.php
parent3fee9f5a389a476da6f2055ab6ac149652c0cf65 (diff)
downloadelgg-9220cb15f17dc6584f10b3899e8e7359487673c1.tar.gz
elgg-9220cb15f17dc6584f10b3899e8e7359487673c1.tar.bz2
just in case any plugin called the previous install functions, I put them back as stubs
git-svn-id: http://code.elgg.org/elgg/trunk@7322 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/lib/install.php')
-rw-r--r--engine/lib/install.php14
1 files changed, 10 insertions, 4 deletions
diff --git a/engine/lib/install.php b/engine/lib/install.php
index 47ad47e39..cfb8ac7ec 100644
--- a/engine/lib/install.php
+++ b/engine/lib/install.php
@@ -8,8 +8,14 @@
* @subpackage Installation
*/
-// @todo - remove this internal function as soon as it is pulled from elgg_view()
+// these were internal functions that perhaps can be removed rather than deprecated
+function is_db_installed() {
+ elgg_deprecated_notice('is_db_installed() has been deprecated', 1.8);
+ return true;
+}
+
function is_installed() {
- global $CONFIG;
- return $CONFIG->installed;
-} \ No newline at end of file
+ elgg_deprecated_notice('is_installed() has been deprecated', 1.8);
+ return true;
+}
+