Actions
Bug #14221
closedconfig.stat_apache_pagenames code [type] ends up empty
Start date:
2004-07-02
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
3.6.1
PHP Version:
4
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
on line 1288 of class.tslib_fe.php:
$pageName = str_replace('[type]',$this->page['type'],$pageName);
tslib_fe::getConfigArray() refers to $this->page['type'] which is empty
i think the line should be changed to
$pageName = str_replace("[type]",$GLOBALS['TSFE']->type,$pageName);
(issue imported from #M187)
Actions