blob: cfb8ac7ec6706a37bcc74ec5566d4d1aa7876c1f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<?php
/**
* Elgg installation
* Various functions to assist with installing and upgrading the system
*
* @package Elgg.Core
* @subpackage Installation
*/
// 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() {
elgg_deprecated_notice('is_installed() has been deprecated', 1.8);
return true;
}
|