Bug #17614 » pagegen3.diff
C:\htdocs\clarity_ag381\typo3\sysext\cms\tslib\pagegen.php 2007-09-18 17:21:40.554876800 +0300 | ||
---|---|---|
// *********************************
|
||
// Initialization of some variables
|
||
// *********************************
|
||
TSpagegen::pagegenInit();
|
||
|
||
//TSpagegen::pagegenInit();
|
||
$TSpagegen = t3lib_div::makeInstance('TSpagegen');
|
||
$TSpagegen->pagegenInit();
|
||
|
||
// *************************
|
||
// Global content object...
|
||
... | ... | |
// ******************************
|
||
// LIBRARY INCLUSION, TypoScript
|
||
// ******************************
|
||
$temp_incFiles=TSpagegen::getIncFiles();
|
||
//$temp_incFiles=TSpagegen::getIncFiles();
|
||
$temp_incFiles=$TSpagegen->getIncFiles();
|
||
reset($temp_incFiles);
|
||
while(list(,$temp_file)=each($temp_incFiles)) {
|
||
include_once('./'.$temp_file);
|
||
... | ... | |
// If this is an array, it's a sign that this script is included in order to include certain PHP_SCRIPT_INT-scripts
|
||
if (!$GLOBALS['TSFE']->isINTincScript()) {
|
||
$TT->push('pagegen.php, render');
|
||
TSpagegen::renderContent();
|
||
// TSpagegen::renderContent();
|
||
$TSpagegen->renderContent();
|
||
$GLOBALS['TSFE']->setAbsRefPrefix();
|
||
$TT->pull();
|
||
}
|