Index: class.tslib_fe.php =================================================================== --- class.tslib_fe.php (revision 3674) +++ class.tslib_fe.php (working copy) @@ -993,7 +993,6 @@ // Is the ID a link to another page?? if ($this->page['doktype']==4) { - $this->MP = ''; // We need to clear MP if the page is a shortcut. Reason is if the short cut goes to another page, then we LEAVE the rootline which the MP expects. $this->page = $this->getPageShortcut($this->page['shortcut'],$this->page['shortcut_mode'],$this->page['uid']); $this->id = $this->page['uid']; } @@ -1069,8 +1068,17 @@ } $c++; } + + // get back MP vars (stored here by getMenu function) + if (isset($page['_MP_PARAM']) && $page['_MP_PARAM']) { + if ($this->MP) { + $this->MP .= ','; + } + $this->MP .= $page['_MP_PARAM']; + } break; default: + $this->MP = ''; // We need to clear MP if the page is a shortcut. Reason is AS the short cut goes to another page, then we LEAVE the rootline which the MP expects. $page = $this->sys_page->getPage($idArray[0]); break; }