Bug #24953
closed
Could you be more specific? #20542 was already solved and included in 4.3. Is there anything missing yet? Please elaborate so that we can understand it better.
Thanks!
Hi,
I try to create a typolink by using the $this->cObj->typoLink();
The config array is:
$lConf = array(
'parameter' => $pid,
'additionalParams' => '&L=1',
'addQueryString' => '1',
'addQueryString.method' => 'GET,POST',
'addQueryString.exclude' => 'L,tx_sfpresse_pi1[pointer]'
);
even tx_sfpresse_pi1|pointer doesn't work.
- Status changed from Needs Feedback to Closed
- Target version deleted (
0)
This feature works correctly. The error in the code is wrong usage of TypoScript in PHP. You have to use a multidimensional array like this:
$lConf = array(
'parameter' => 20,
'additionalParams' => '&L=1',
'addQueryString' => '1',
'addQueryString.' => array(
'method' => 'GET,POST',
'exclude' => 'L,tx_sfpresse_pi1[pointer]'
)
);
Also available in: Atom
PDF