Actions
Bug #18837
closedMissing dot in t3lib_TStemplate line 1377
Status:
Closed
Priority:
Should have
Assignee:
-
Category:
-
Target version:
-
Start date:
2008-05-25
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
4.2
PHP Version:
5.2
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
In t3lib_TStemplate line 1377 there a dot missing:
// linkVars
if ($GLOBALS['TSFE']->config['config']['uniqueLinkVars']) {
should be:
// linkVars
if ($GLOBALS['TSFE']->config['config.']['uniqueLinkVars']) {
(issue imported from #M8500)
Updated by Niels Pardon over 16 years ago
Sorry. The missing dot is correct. But there's another issue with this.
If $GLOBALS['TSFE']->config['config']['uniqueLinkVars'] is not set then it is true in the if statement above. I think this is a bug.
So it should be:
// linkVars
if ((boolean) $GLOBALS['TSFE']->config['config']['uniqueLinkVars']) {
Updated by Niels Pardon over 16 years ago
The mistake must be somewhere else. Please close as invalid!
Actions