Index: typo3/sysext/cms/layout/db_new_content_el.php =================================================================== --- typo3/sysext/cms/layout/db_new_content_el.php (revision 8072) +++ typo3/sysext/cms/layout/db_new_content_el.php (working copy) @@ -391,9 +391,10 @@ // Build the for the module $this->content = $this->doc->startPage($LANG->getLL('newContentElement')); - $this->content.= $this->doc->moduleBody($this->pageinfo, $docHeaderButtons, $markers); + $this->content .= $this->doc->moduleBody($this->pageinfo, $docHeaderButtons, $markers); $this->content .= $this->doc->sectionEnd(); - $this->content.= $this->doc->endPage(); + $this->content .= ''; + $this->content .= $this->doc->endPage(); $this->content = $this->doc->insertStylesAndJS($this->content); }