aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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;
+}
+