From 01f21995dd5d488fa13be54049610bec919ced95 Mon Sep 17 00:00:00 2001 From: Christian Weiske Date: Sat, 14 May 2011 10:30:01 +0200 Subject: fix google custom search xml --- www/gsearch/context.php | 31 +++++++++++++++++++++++++------ 1 file changed, 25 insertions(+), 6 deletions(-) (limited to 'www/gsearch/context.php') diff --git a/www/gsearch/context.php b/www/gsearch/context.php index d714ec1..ea496de 100644 --- a/www/gsearch/context.php +++ b/www/gsearch/context.php @@ -1,16 +1,35 @@ + * @author Christian Weiske + * @author Eric Dane + * @license GPL http://www.gnu.org/licenses/gpl.html + * @link http://sourceforge.net/projects/semanticscuttle + * @link http://www.google.com/cse/docs/cref.html + */ require_once '../www-header.php'; -if($GLOBALS['enableGoogleCustomSearch'] == false) { - echo "Google Custom Search disabled. You can enable it into the config.php file."; - die; +if ($GLOBALS['enableGoogleCustomSearch'] == false) { + header('HTTP/1.0 403 Forbidden'); + header('Content-Type: text/plain; charset=utf-8'); + echo "Google Custom Search disabled." + . " You can enable it into the config.php file.\n"; + die(); } ?> - - + - <?php echo $GLOBALS['sitename'] ?> + <?php echo htmlspecialchars($GLOBALS['sitename']) ?> -- cgit v1.2.3 From 8d29eaf349d8e8767863aff889fe82905387ef16 Mon Sep 17 00:00:00 2001 From: Christian Weiske Date: Sat, 14 May 2011 10:30:43 +0200 Subject: CS --- www/gsearch/context.php | 27 ++++++++++++--------------- 1 file changed, 12 insertions(+), 15 deletions(-) (limited to 'www/gsearch/context.php') diff --git a/www/gsearch/context.php b/www/gsearch/context.php index ea496de..fd10c4e 100644 --- a/www/gsearch/context.php +++ b/www/gsearch/context.php @@ -28,19 +28,16 @@ if ($GLOBALS['enableGoogleCustomSearch'] == false) { ?> - - <?php echo htmlspecialchars($GLOBALS['sitename']) ?> - - - - - - - - - - - - + + <?php echo htmlspecialchars($GLOBALS['sitename']) ?> + + + + + + + + + -- cgit v1.2.3