From 77e5a85ff8fbf372cee3b2ded3fc2aab3f4377f0 Mon Sep 17 00:00:00 2001 From: Alexander Sulfrian Date: Fri, 11 Dec 2009 03:19:53 +0100 Subject: updated config --- paste/paste.php | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'paste/paste.php') diff --git a/paste/paste.php b/paste/paste.php index 17cec80..fbcdf2c 100644 --- a/paste/paste.php +++ b/paste/paste.php @@ -32,8 +32,14 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ +require_once("config.php"); require_once("include/pastify.inc"); -require_once("include/createpage.inc"); + +if (!is_subclass_of($config['storage'], 'StorageEngine')) +{ + header('HTTP/1.0 503 Service Unavailable'); + die('Invalid config'); +} $refererurl = $_SERVER['HTTP_REFERER']; $refererurl = preg_replace("/\/[^\/]*$/", "", $refererurl); -- cgit v1.2.3