Index: t3lib/class.t3lib_frontendedit.php =================================================================== --- t3lib/class.t3lib_frontendedit.php (revision 8246) +++ t3lib/class.t3lib_frontendedit.php (working copy) @@ -503,7 +503,7 @@ // Unless permissions specifically allow it, editing is not allowed. $mayEdit = false; - + if ($GLOBALS['BE_USER']->recordEditAccessInternals($table, $dataArray)) { if ($table=='pages') { // 2 = permission to edit the page if ($GLOBALS['BE_USER']->isAdmin() || $GLOBALS['BE_USER']->doesUserHaveAccess($dataArray, 2)) { @@ -533,6 +533,7 @@ $mayEdit = count($allow) && ($perms & 16); } } + } return $mayEdit; }