Index: core/kernel/nparser/ntags.php IDEA additional info: Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP <+>UTF-8 =================================================================== --- core/kernel/nparser/ntags.php (revision 15716) +++ core/kernel/nparser/ntags.php (revision ) @@ -560,9 +560,9 @@ { $o = ''; foreach ($tag['NP'] as $key => $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; \ No newline at end of file