// Fix HTML validation on URLs (replace & per &)

This commit is contained in:
rMalie
2011-09-06 09:58:11 +00:00
parent 3d89058084
commit f0c33c8739
7 changed files with 9 additions and 9 deletions
+1 -1
View File
@@ -56,7 +56,7 @@ class ProductControllerCore extends FrontController
// $_SERVER['HTTP_HOST'] must be replaced by the real canonical domain
if (Validate::isLoadedObject($this->product))
{
$canonicalURL = $this->context->link->getProductLink($this->product);
$canonicalURL = str_replace('&', '&', $this->context->link->getProductLink($this->product));
if (!preg_match('/^'.Tools::pRegexp($canonicalURL, '/').'([&?].*)?$/', Tools::getProtocol().$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI']))
{
header('HTTP/1.0 301 Moved');