Skip to content

Commit 702de82

Browse files
committed
Merge branch 'patch-6' of https://github.com/tristanlins/contao-core into hotfix/3.4.1
2 parents 3e2f9b9 + 6893085 commit 702de82

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

system/modules/core/library/Contao/System.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -709,7 +709,7 @@ protected static function convertXlfToPhp($strName, $strLanguage, $blnLoad=false
709709

710710
if (strpos($value, '\n') !== false)
711711
{
712-
return '"' . str_replace('"', '\\"', $value) . '"';
712+
return '"' . str_replace(array('$', '"'), array('\\$', '\\"'), $value) . '"';
713713
}
714714
else
715715
{

0 commit comments

Comments
 (0)