Index: branches/RC/core/kernel/parser/tags.php =================================================================== diff -u -N -r9286 -r10601 --- branches/RC/core/kernel/parser/tags.php (.../tags.php) (revision 9286) +++ branches/RC/core/kernel/parser/tags.php (.../tags.php) (revision 10601) @@ -339,7 +339,7 @@ case 'Param': $code[] = 'if (isset($application->LateParsed["'.$this->NP['name'].'"])) {'; $code[] = '$__f = $application->PreParsedBlocks[\'capture_'.$this->NP['name'].'\'];'; - $code[] = '$application->Parser->SetParam(\''.$this->NP['name'].'\', $__f(array())'.');'; + $code[] = '$application->Parser->SetParam(\''.$this->NP['name'].'\', $__f($params)'.');'; // array() $code[] = '$'.$this->NP['name'].' = $application->Parser->GetParam(\''.$this->NP['name'].'\');'; $code[] = '$params[\''.$this->NP['name'].'\'] = $'.$this->NP['name'].';'; $code[] = '}';