Index: t3lib/class.t3lib_befunc.php =================================================================== --- t3lib/class.t3lib_befunc.php (revision 10317) +++ t3lib/class.t3lib_befunc.php (revision ) @@ -567,6 +567,11 @@ public static function BEgetRootLine($uid, $clause = '', $workspaceOL = FALSE) { static $BEgetRootLine_cache = array(); + // remove anchor if present. It's called with anchor from list view with CEs + if ($pos = strpos($uid, '#') !== FALSE) { + $uid = substr($uid, 0, $pos + 1); + } + $output = array(); $pid = $uid; $ident = $pid . '-' . $clause . '-' . $workspaceOL;