[-] Classes : #PSCFI-4477 : BugFix GSiteMap priority - Decimals no longer take care about local numeric separator
git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@11338 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
@@ -309,7 +309,7 @@ XML;
|
||||
{
|
||||
$sitemap = $xml->addChild('url');
|
||||
$sitemap->addChild('loc', htmlspecialchars($loc));
|
||||
$sitemap->addChild('priority', $priority);
|
||||
$sitemap->addChild('priority', number_format($priority,1,'.',''));
|
||||
if ($last_mod)
|
||||
$sitemap->addChild('lastmod', $last_mod);
|
||||
$sitemap->addChild('changefreq', $change_freq);
|
||||
|
||||
Reference in New Issue
Block a user