Feature #17402 ยป typo3_initBeUserFix.patch
init.php Tue Jun 19 18:17:24 2007 | ||
---|---|---|
}
|
||
// ****************************************************
|
||
// Include tables customization (tables + ext_tables)
|
||
// ****************************************************
|
||
include (TYPO3_tables_script ? PATH_typo3conf.TYPO3_tables_script : PATH_t3lib.'stddb/tables.php');
|
||
// Extension additions
|
||
if ($TYPO3_LOADED_EXT['_CACHEFILE']) {
|
||
include (PATH_typo3conf.$TYPO3_LOADED_EXT['_CACHEFILE'].'_ext_tables.php');
|
||
} else {
|
||
include (PATH_t3lib.'stddb/load_ext_tables.php');
|
||
}
|
||
// extScript
|
||
if (TYPO3_extTableDef_script) {
|
||
include (PATH_typo3conf.TYPO3_extTableDef_script);
|
||
}
|
||
// *******************************
|
||
// BackEnd User authentication
|
||
// *******************************
|
||
... | ... | |
// Setting the web- and filemount global vars:
|
||
$WEBMOUNTS = $BE_USER->returnWebmounts(); // ! WILL INCLUDE deleted mount pages as well!
|
||
$FILEMOUNTS = $BE_USER->returnFilemounts();
|
||
// ****************************************************
|
||
// Include tables customization (tables + ext_tables)
|
||
// ****************************************************
|
||
include (TYPO3_tables_script ? PATH_typo3conf.TYPO3_tables_script : PATH_t3lib.'stddb/tables.php');
|
||
// Extension additions
|
||
if ($TYPO3_LOADED_EXT['_CACHEFILE']) {
|
||
include (PATH_typo3conf.$TYPO3_LOADED_EXT['_CACHEFILE'].'_ext_tables.php');
|
||
} else {
|
||
include (PATH_t3lib.'stddb/load_ext_tables.php');
|
||
}
|
||
// extScript
|
||
if (TYPO3_extTableDef_script) {
|
||
include (PATH_typo3conf.TYPO3_extTableDef_script);
|
||
}
|
||
// ****************
|