--- "/home/franz/T\303\251l\303\251chargement/TYPO3/typo3_src-6.1.12/typo3/sysext/backend/Classes/Tree/View/AbstractTreeView.php" 2014-10-22 11:01:26.000000000 +0200 +++ AbstractTreeView.php 2014-11-19 19:01:20.000000000 +0100 @@ -768,7 +768,11 @@ $idH = array(); // Traverse the records: while ($crazyRecursionLimiter > 0 && ($row = $this->getDataNext($res, $subCSSclass))) { - if (!$GLOBALS['BE_USER']->isInWebMount($row['uid'])) { + $pageId = $row['uid']; + if ($this->table != 'pages') { + $pageId = $row['pid']; + } + if (!$GLOBALS['BE_USER']->isInWebMount($pageId)) { // Current record is not within web mount => skip it continue; }