Project

General

Profile

Bug #77734

Updated by Michael Stucki over 7 years ago

<pre> 
 options.pageTree.showPathAboveMounts = 1 
 </pre> 

 If this is turned on in UserTS, the path to the DB mount is displayed right above the pagetree. 
 What I would expect is that the path of the parent page is displayed, which represents the path to the first clickable page in the tree. 
 However, the path contains also the page where the DB mount is pointing to. 

 You can see what I mean in the screenshot in the reference: 
 See https://docs.typo3.org/typo3cms/TSconfigReference/UserTsconfig/Options/Index.html#pagetree-showpathabovemounts 

 I don't think it's in any way helpful to print "About us" in the path if the pagetree starts with this page. 

 The problem is even worse when you have two DB mounts which both share the same parent page. 

 What I currently get is this: 

 <pre> 
 /root/Home/About us 
   - About us 
     - Subpage 1 
     - Subpage 2 
     - Subpage 3 

 /root/Home/Another page 
   - Another page 
     - Subpage 1 
     - Subpage 2 
     - Subpage 3 
 </pre> 

 However, what I would expect is this: 

 <pre> 
 /root/Home 
   - About us 
     - Subpage 1 
     - Subpage 2 
     - Subpage 3 
   - Another page 
     - Subpage 1 
     - Subpage 2 
     - Subpage 3 
 </pre> 

 Right know I can't imagine that the current situation was intended. I rather think it's a bug. 

 The change is split into three patches: 
 * https://review.typo3.org/#/c/49748/ - Fix page tree mountpoint path 
 * https://review.typo3.org/#/c/49749/ - Group mount points that have the same parent 
 * https://review.typo3.org/#/c/49750/ - Show mountpoint path in record + link browsers if enabled in UserTS

Back