Index: branches/5.3.x/core/kernel/nparser/ntags.php =================================================================== diff -u -N -r15483 -r15902 --- branches/5.3.x/core/kernel/nparser/ntags.php (.../ntags.php) (revision 15483) +++ branches/5.3.x/core/kernel/nparser/ntags.php (.../ntags.php) (revision 15902) @@ -1,6 +1,6 @@ $val) { - $code[] = 'if (!isset($' . $key . ')) $params[\'' . $key . '\'] = \'' . $val . '\';'; - $code[] = '$' . $key . ' = isset($' . $key . ') ? $' . $key . ' : \'' . $val . '\';'; - $code[] = '$_parser->SetParam(\'' . $key . '\', $' . $key . ');'; + $code[] = 'if (!isset($' . $key . ')) $params["' . $key . '"] = "' . $val . '";'; + $code[] = '$' . $key . ' = isset($' . $key . ') ? $' . $key . ' : "' . $val . '";'; + $code[] = '$_parser->SetParam("' . $key . '", $' . $key . ');'; } $this->AppendCode($o, $code); return $o;