Index: typo3/sysext/cms/layout/class.tx_cms_layout.php =================================================================== --- typo3/sysext/cms/layout/class.tx_cms_layout.php (revision 10275) +++ typo3/sysext/cms/layout/class.tx_cms_layout.php (revision ) @@ -631,10 +631,10 @@ // If not, a new header without any buttons will be generated. if (isset($columnConfig['colPos']) && $head[$columnKey]) { $grid .= $head[$columnKey] . $content[$columnKey]; - } else if ($head[$columnKey]) { - $grid .= $this->tt_content_drawColHeader($GLOBALS['LANG']->getLL('notAssigned'), '', ''); - } else { + } else if ($columnConfig['colPos']) { $grid .= $this->tt_content_drawColHeader($GLOBALS['LANG']->getLL('noAccess'), '', ''); + } else { + $grid .= $this->tt_content_drawColHeader($GLOBALS['LANG']->getLL('notAssigned'), '', ''); } $grid .= '';