From 88088f6d0f44cd74c145007cbab7f20b82d534e2 Mon Sep 17 00:00:00 2001 From: cweiske Date: Sat, 16 Jan 2010 08:11:39 +0000 Subject: respect $shorturl configuration setting git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@577 b3834d28-1941-0410-a4f8-b48e95affb8f --- www/go.php | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'www') diff --git a/www/go.php b/www/go.php index d306be0..9d1a44f 100644 --- a/www/go.php +++ b/www/go.php @@ -12,6 +12,13 @@ */ require_once '../src/SemanticScuttle/header.php'; +if (!$GLOBALS['shorturl']) { + header('HTTP/1.0 500 Internal Server Error'); + header('Content-Type: text/plain'); + echo 'Short URL service deactivated'; + exit(); +} + if (!isset($_SERVER['PATH_INFO'])) { header('HTTP/1.0 400 Bad Request'); header('Content-Type: text/plain'); -- cgit v1.2.3