link to site needs httpisation too

This commit is contained in:
Shish 2009-07-28 21:13:07 +01:00
parent 5f106b0950
commit 310c7b0da0
2 changed files with 2 additions and 2 deletions

View File

@ -55,7 +55,7 @@ class RSS_Comments extends SimpleExtension {
} }
$title = $config->get_string('title'); $title = $config->get_string('title');
$base_href = $config->get_string('base_href'); $base_href = make_http($config->get_string('base_href'));
$version = $config->get_string('version'); $version = $config->get_string('version');
$xml = <<<EOD $xml = <<<EOD
<?xml version="1.0" encoding="utf-8" ?> <?xml version="1.0" encoding="utf-8" ?>

View File

@ -79,7 +79,7 @@ class RSS_Images extends SimpleExtension {
} }
$title = $config->get_string('title'); $title = $config->get_string('title');
$base_href = $config->get_string('base_href'); $base_href = make_http($config->get_string('base_href'));
$search = ""; $search = "";
if(count($search_terms) > 0) { if(count($search_terms) > 0) {
$search = html_escape(implode(" ", $search_terms)) . "/"; $search = html_escape(implode(" ", $search_terms)) . "/";