diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2013-01-10 09:41:12 +0100 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2013-01-10 09:43:22 +0100 |
commit | 5845b2502787f6672e317bd271018e8cd778ec02 (patch) | |
tree | e2b4c816752e9fca3864c79ed5954272d72bcc2c /installer/config.php | |
parent | 941f8b5affaffe7f24a6447aba389980778d427a (diff) |
Avoid direct execution of installer includes (#1488895)
Diffstat (limited to 'installer/config.php')
-rw-r--r-- | installer/config.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/installer/config.php b/installer/config.php index bd676b12e..41aa36e10 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 |