Feature #49822 » add_diable_option_for_the_4th_link_parameter.patch
../../../opt/typo3_src/typo3_61_current/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php (revision ) | ||
---|---|---|
// The '-' character means 'no title'. Necessary in order to specify further parameters without setting the title!
|
||
$forceTitle = '';
|
||
}
|
||
if (isset($link_paramA[4]) && strlen(trim($link_paramA[4])) > 0) {
|
||
if (isset($link_paramA[4]) && strlen(trim($link_paramA[4])) > 0 && trim($link_paramA[4]) != '-') {
|
||
$forceParams = trim($link_paramA[4]);
|
||
// params value
|
||
$conf['additionalParams'] .= $forceParams[0] == '&' ? $forceParams : '&' . $forceParams;
|