Index: branches/RC/core/kernel/nparser/ntags.php =================================================================== diff -u -r11336 -r11399 --- branches/RC/core/kernel/nparser/ntags.php (.../ntags.php) (revision 11336) +++ branches/RC/core/kernel/nparser/ntags.php (.../ntags.php) (revision 11399) @@ -502,8 +502,9 @@ { $o = ''; foreach ($tag['NP'] as $key => $val) { - $code[] = 'if (!isset($'.$key.')) $params[\''.$key.'\'] = \''.$val.'\';'; - $code[] = '$'.$key.' = isset($'.$key.') ? $'.$key.' : \''.$val.'\';'; + $code[] = 'if (!isset($' . $key . ')) $params[\'' . $key . '\'] = \'' . $val . '\';'; + $code[] = '$' . $key . ' = isset($' . $key . ') ? $' . $key . ' : \'' . $val . '\';'; + $code[] = '$_parser->SetParam(\'' . $key . '\', $' . $key . ');'; } $this->AppendCode($o, $code); return $o;