]> gitweb.fluxo.info Git - lorea/elgg.git/commitdiff
just in case any plugin called the previous install functions, I put them back as...
authorcash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>
Tue, 16 Nov 2010 00:35:43 +0000 (00:35 +0000)
committercash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>
Tue, 16 Nov 2010 00:35:43 +0000 (00:35 +0000)
git-svn-id: http://code.elgg.org/elgg/trunk@7322 36083f99-b078-4883-b0ff-0f9b5a30f544

engine/lib/install.php

index 47ad47e39b228547f3761765070edff7ccd80fce..cfb8ac7ec6706a37bcc74ec5566d4d1aa7876c1f 100644 (file)
@@ -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;
+}
+