summaryrefslogtreecommitdiff
path: root/installer/check.php
diff options
context:
space:
mode:
authorThomas Bruederli <thomas@roundcube.net>2014-04-21 16:39:19 +0200
committerThomas Bruederli <thomas@roundcube.net>2014-04-21 16:39:19 +0200
commiteea11ecdde396ffc261c20ab930120612260d931 (patch)
tree5d3f79d6ceea27ca5e899b3f6a068f4d422f8feb /installer/check.php
parentd2e3a22d24190c02741e8a67ff1fd8601fe17e07 (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/check.php')
-rw-r--r--installer/check.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/installer/check.php b/installer/check.php
index d4c3f6685..31b4c2955 100644
--- a/installer/check.php
+++ b/installer/check.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.");
}