diff options
author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-11-16 00:35:43 +0000 |
---|---|---|
committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-11-16 00:35:43 +0000 |
commit | 9220cb15f17dc6584f10b3899e8e7359487673c1 (patch) | |
tree | c84c3815a940256dfa490b5f009a37d3c6c379e7 /engine | |
parent | 3fee9f5a389a476da6f2055ab6ac149652c0cf65 (diff) | |
download | elgg-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')
-rw-r--r-- | engine/lib/install.php | 14 |
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; +} + |