Feature #15269
closedAdd a Querystring to a <LINK id/type-pair
0%
Description
The additionalParams - Behaviour should be also available for a manually or by RTE inserted typolink <LINK>. The Querystring could be an extension of the id/type-pair of the LINK. For example: <LINK 97,1,&print=1>
Working example for class.tslib_content.php
$pairParts = t3lib_div::trimExplode(',',$link_param);
if (count($pairParts)>1) {
$link_param = $pairParts0;
$theTypeP = $pairParts1; // Overruling 'type'
+++ if(isset($pairParts2)) $conf['additionalParams'] = $pairParts2;
}
(issue imported from #M2019)
Files
Updated by Michael Stucki over 16 years ago
Well, this could also be considered as a bug. But let's see if it still can go into 4.2...
Updated by Michael Stucki over 16 years ago
Hi Ingo, can you add this to the 4.2 roadmap? (Or is it ok if I do such things on my own? :-))
Updated by Ingo Renner over 16 years ago
Just did so, I'd rather keep control of that myself...
Updated by Michael Stucki over 16 years ago
Fixed in revision 3344. Thanks to René Wagner!