From 19766c4e0e9238be1cd7b2610500257e7aea6137 Mon Sep 17 00:00:00 2001 From: Michael Foster Date: Fri, 19 Jul 2013 06:20:22 -0400 Subject: [PATCH] Bugfix: Warning when in CLI-mode --- templates/themes/sitemap/info.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/themes/sitemap/info.php b/templates/themes/sitemap/info.php index e16448ee..43b529fa 100644 --- a/templates/themes/sitemap/info.php +++ b/templates/themes/sitemap/info.php @@ -23,7 +23,7 @@ 'name' => 'url', 'type' => 'text', 'comment' => '(with trailing slash)', - 'default' => 'http://' . $_SERVER['HTTP_HOST'] . $config['root'], + 'default' => (isset($_SERVER['HTTP_HOST']) ? 'http://' . $_SERVER['HTTP_HOST'] . $config['root'] : ''), 'size' => '20' );