Jump to content

PS 1.6.1.5 + Wamp + $cache_path + DIRECTORY_SEPARATOR + Firefox


Recommended Posts

Bonjour,

 

Prestashop me génère un chemin de type :

http://monsite.com/themes/montheme/cache\v_195_e50c9036643d96609d621d895c9dbc9c_all.css

 

En remontant jusqu'à classes > media je vois ce code en 1.6.1.5 :

$cache_path = $cache_path ? $cache_path : _PS_THEME_DIR_.'cache'.DIRECTORY_SEPARATOR;

 

or en 1.6.1.4 :

C'est  : $cache_path = _PS_THEME_DIR_.'cache/';

 

Le problème vient du backslash qui ne passe pas sous firefox (45.0.2)

 

Je fais donc un replace dans smarty pour ne pas modifier le coeur :

<link rel="stylesheet" href="{$css_uri|replace:'\\':'/'}" type="text/css" media="{$media|escape:'html':'UTF-8'}" />

 

Mais est ce une erreur de code ou bien il faut passer sous linux ou faire la modif en smarty ?

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...