Merge branch 'ticket/r15225-redirect-mobile' into develop

This commit is contained in:
Michael RICOIS 2018-02-15 11:28:02 +01:00
commit e992d084da

View File

@ -63,7 +63,7 @@ class CategoryControllerCore extends FrontController
$excludedKey = array('isolang', 'id_lang', 'id_category');
foreach($_GET as $key => $value) {
if(!in_array($key, $excludedKey)) {
$params .= ($params == '' ? '?' : '&').$key.'='.$value;
$params .= ($params == '' ? '?' : '&').$key.'='.rawurlencode($value);
}
}
if (defined('_PS_MODE_DEV_') AND _PS_MODE_DEV_ ) {