mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-04-30 18:42:43 +02:00
bug 2469 compiled_template_cache_language option does not work properly on some language keys because of double escaping
git-svn-id: http://piwigo.org/svn/trunk@12429 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
@@ -771,7 +771,7 @@ var s,after = document.getElementsByTagName(\'script\')[document.getElementsByTa
|
||||
$regex = "~$ldq *\'([^'$]+)\'\|@translate\|~";
|
||||
$source = preg_replace_callback( $regex, create_function('$m', 'global $lang; return isset($lang[$m[1]]) ? \'{\'.var_export($lang[$m[1]],true).\'|\' : \'$m[0]\';'), $source);
|
||||
|
||||
$regex = "~($ldq *assign +var=.+ +value=)\'([^'$]+)\'\|@translate~e";
|
||||
$regex = "~($ldq *assign +var=.+ +value=)\'([^'$]+)\'\|@translate~";
|
||||
$source = preg_replace_callback( $regex, create_function('$m', 'global $lang; return isset($lang[$m[2]]) ? $m[1].var_export($lang[$m[2]],true) : \'$m[0]\';'), $source);
|
||||
|
||||
return $source;
|
||||
|
||||
Reference in New Issue
Block a user