Index: typo3/sysext/lowlevel/dbint/index.php
===================================================================
--- typo3/sysext/lowlevel/dbint/index.php (revision 8558)
+++ typo3/sysext/lowlevel/dbint/index.php (working copy)
@@ -155,7 +155,6 @@
'function' => array(
0 => $GLOBALS['LANG']->getLL('menu', true),
'records' => $GLOBALS['LANG']->getLL('recordStatistics', true),
- 'tree' => $GLOBALS['LANG']->getLL('totalPageTree', true),
'relations' => $GLOBALS['LANG']->getLL('databaseRelations', true),
'search' => $GLOBALS['LANG']->getLL('fullSearch', true),
'filesearch' => $GLOBALS['LANG']->getLL('findFilename', true),
@@ -243,9 +242,6 @@
case 'search':
$this->func_search();
break;
- case 'tree':
- $this->func_tree();
- break;
case 'records':
$this->func_records();
break;
@@ -330,7 +326,7 @@
$content = '
';
- $availableModFuncs = array('records', 'tree', 'relations', 'search', 'filesearch', 'refindex');
+ $availableModFuncs = array('records', 'relations', 'search', 'filesearch', 'refindex');
foreach ($availableModFuncs as $modFunc) {
$link = 'index.php?SET[function]=' . $modFunc;
$title = $GLOBALS['LANG']->getLL($modFunc);
@@ -434,28 +430,7 @@
}
}
- /**
- * Display page tree
- *
- * @return void
- */
- function func_tree() {
- global $LANG,$BACK_PATH;
- $startID = 0;
- $admin = t3lib_div::makeInstance('t3lib_admin');
- $admin->genTree_makeHTML=1;
- $admin->backPath = $BACK_PATH;
- $admin->genTree(intval($startID),'');
-
- $this->content.= $this->doc->header($GLOBALS['LANG']->getLL('tree'));
- $this->content.= $this->doc->spacer(5);
- $this->content.= $this->doc->sectionEnd();
-
- $this->content.= $admin->genTree_HTML;
- $this->content.= $admin->lostRecords($admin->genTree_idlist.'0');
- }
-
/**
* Records overview
*
Index: typo3/sysext/lowlevel/dbint/locallang.xml
===================================================================
--- typo3/sysext/lowlevel/dbint/locallang.xml (revision 8558)
+++ typo3/sysext/lowlevel/dbint/locallang.xml (working copy)
@@ -8,7 +8,6 @@
-
@@ -76,8 +75,6 @@
-
-