Browse Source

Bugfix: Warning when in CLI-mode

pull/40/head
Michael Foster 11 years ago
parent
commit
19766c4e0e
  1. 2
      templates/themes/sitemap/info.php

2
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'
);

Loading…
Cancel
Save