summaryrefslogtreecommitdiff
path: root/installer/config.php
diff options
context:
space:
mode:
authorThomas Bruederli <thomas@roundcube.net>2013-01-10 09:41:12 +0100
committerThomas Bruederli <thomas@roundcube.net>2013-01-10 09:41:12 +0100
commit619c320c0ee9ca39d0fada9113133724cc2a11fe (patch)
treeb10d5e297ae176d1315753d82ba06c1fa62331eb /installer/config.php
parent1f87107b0801a1881d426993c7fca18ca25356b0 (diff)
Avoid direct execution of installer includes (#1488895)
Diffstat (limited to 'installer/config.php')
-rw-r--r--installer/config.php7
1 files changed, 7 insertions, 0 deletions
diff --git a/installer/config.php b/installer/config.php
index 6897ffbba..d6846edc7 100644
--- a/installer/config.php
+++ b/installer/config.php
@@ -1,3 +1,10 @@
+<?php
+
+if (!class_exists('rcube_install') || !is_object($RCI)) {
+ die("Not allowed! Please open installer/index.php instead.");
+}
+
+?>
<form action="index.php" method="post">
<input type="hidden" name="_step" value="2" />
<?php