Index: typo3/sysext/cms/tslib/content/class.tslib_content_content.php =================================================================== --- typo3/sysext/cms/tslib/content/class.tslib_content_content.php (revision 9489) +++ typo3/sysext/cms/tslib/content/class.tslib_content_content.php (working copy) @@ -114,7 +114,11 @@ // Language overlay: if (is_array($row) && $GLOBALS['TSFE']->sys_language_contentOL) { - $row = $GLOBALS['TSFE']->sys_page->getRecordOverlay($conf['table'], $row, $GLOBALS['TSFE']->sys_language_content, $GLOBALS['TSFE']->sys_language_contentOL); + if ($conf['table'] == 'pages') { + $row = $GLOBALS['TSFE']->sys_page->getPageOverlay($row); + } else { + $row = $GLOBALS['TSFE']->sys_page->getRecordOverlay($conf['table'], $row, $GLOBALS['TSFE']->sys_language_content, $GLOBALS['TSFE']->sys_language_contentOL); + } } if (is_array($row)) { // Might be unset in the sys_language_contentOL