mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-10 04:24:14 +09:00
treat quotation mark2
This commit is contained in:
parent
46110f0915
commit
2cb87af723
1 changed files with 1 additions and 1 deletions
|
|
@ -445,7 +445,7 @@ class VariableBase
|
||||||
// flag to mark transformed quotation mark.
|
// flag to mark transformed quotation mark.
|
||||||
$escaped_quot = false;
|
$escaped_quot = false;
|
||||||
// parse the value (text);
|
// parse the value (text);
|
||||||
if (strpos ($value, '"'))
|
if (strpos ($value, '"') !== false)
|
||||||
{
|
{
|
||||||
$escaped_quot = true;
|
$escaped_quot = true;
|
||||||
$value = str_replace('"', '"', $value);
|
$value = str_replace('"', '"', $value);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue