Bug #6359
Typo in additionalParams hook part
| Status: | New | Start date: | 2010-02-05 | |
|---|---|---|---|---|
| Priority: | Must have | Due date: | ||
| Assignee: | - | % Done: | 0% |
|
| Category: | - | |||
| Target version: | - | |||
| Votes: | 0 |
Description
in the hook part for the additional parameters, default parameters are overwritten:
$additionalParams = t3lib_div::callUserFunction($userFunc, $params, $this);
I guess this should be:
$additionalParams .= t3lib_div::callUserFunction($userFunc, $params, $this);