Summary:
Generated Sitemap URLs are all HTTPS instead of HTTP
Detailed Description:
If logged on admin side of CMSMS with SSL turned on, all generated URLs of
sitemap file are preceded by HTTPS and not HTTP, making xml file not validated
with google parser.
I've changed these rows to solve problem
file
/modules/SiteMapMadeSimple/SiteMapMadeSimple.module.php
[code]
274 //$obj->encoded_url = cms_htmlentities($onecontent->GetURL()); original
275 $obj->encoded_url = str_replace("https" ,"http" ,
cms_htmlentities($onecontent->GetURL()) ); //modified by blast
[/code]
and these
[code]
282 //$obj->url = $onecontent->GetURL(); original
283 $obj->url = str_replace("https" ,"http" , $onecontent->GetURL() );
//modified by blast
[/code]
Regards
blast