Project

General

Profile

Actions

Bug #18837

closed

Missing dot in t3lib_TStemplate line 1377

Added by Niels Pardon almost 16 years ago. Updated over 15 years ago.

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)

Actions #1

Updated by Niels Pardon almost 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']) {
Actions #2

Updated by Niels Pardon almost 16 years ago

The mistake must be somewhere else. Please close as invalid!

Actions #3

Updated by Christian Kuhn over 15 years ago

Closed as requested by reporter.

Actions

Also available in: Atom PDF