treat quotation mark2

This commit is contained in:
Min-Soo Kim 2020-12-23 09:59:54 +09:00
parent 46110f0915
commit 2cb87af723

View file

@ -445,7 +445,7 @@ class VariableBase
// flag to mark transformed quotation mark.
$escaped_quot = false;
// parse the value (text);
if (strpos ($value, '"'))
if (strpos ($value, '"') !== false)
{
$escaped_quot = true;
$value = str_replace('"', '"', $value);