diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2014-04-21 16:39:19 +0200 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2014-04-21 16:39:19 +0200 |
commit | eea11ecdde396ffc261c20ab930120612260d931 (patch) | |
tree | 5d3f79d6ceea27ca5e899b3f6a068f4d422f8feb /installer/config.php | |
parent | d2e3a22d24190c02741e8a67ff1fd8601fe17e07 (diff) |
Move rcube_installer class to include/rcmail_installer in order to remain accessible by the update script even if the installer directory was removed
Diffstat (limited to 'installer/config.php')
-rw-r--r-- | installer/config.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/installer/config.php b/installer/config.php index 8b98dbef6..39bf48ea4 100644 --- a/installer/config.php +++ b/installer/config.php @@ -1,6 +1,6 @@ <?php -if (!class_exists('rcube_install') || !is_object($RCI)) { +if (!class_exists('rcmail_install', false) || !is_object($RCI)) { die("Not allowed! Please open installer/index.php instead."); } |