aboutsummaryrefslogtreecommitdiffstats
path: root/include/template.class.php
diff options
context:
space:
mode:
authorrvelices <rv-github@modusoptimus.com>2011-10-13 18:18:05 +0000
committerrvelices <rv-github@modusoptimus.com>2011-10-13 18:18:05 +0000
commit1cd0cda111ea642b34d81436f9a68fb4cd1fe8a2 (patch)
tree1430d21d0c90a607b905149d053da1bc7636d80a /include/template.class.php
parent143637d30ee2a386b80dbeb6ce6ff44874d1bfd5 (diff)
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
Diffstat (limited to 'include/template.class.php')
-rw-r--r--include/template.class.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/template.class.php b/include/template.class.php
index 92f78a3d6..4147717f4 100644
--- a/include/template.class.php
+++ b/include/template.class.php
@@ -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;