X-Git-Url: http://git.typo3.org/Packages/TYPO3.CMS.git/blobdiff_plain/19bd98473cd0367fb5cabf0aed60061651d93057..2436ff897f80acd0903d3ed8e158c0d8950bd9d8:/typo3/sysext/cms/layout/class.tx_cms_layout.php?ds=sidebyside diff --git a/typo3/sysext/cms/layout/class.tx_cms_layout.php b/typo3/sysext/cms/layout/class.tx_cms_layout.php index 690ce5f95c9d..9a360f47a073 100755 --- a/typo3/sysext/cms/layout/class.tx_cms_layout.php +++ b/typo3/sysext/cms/layout/class.tx_cms_layout.php @@ -1464,8 +1464,12 @@ class tx_cms_layout extends recordList { } if (strcmp($hookOut, '')) { $out .= $hookOut; + } elseif (!empty($row['list_type'])) { + $out .= '' . $GLOBALS['LANG']->sL(t3lib_BEfunc::getLabelFromItemlist('tt_content', 'list_type', $row['list_type']), TRUE) . '
'; } elseif (!empty($row['select_key'])) { $out .= $GLOBALS['LANG']->sL(t3lib_BEfunc::getItemLabel('tt_content', 'select_key'), 1) . ' ' . $row['select_key'] . '
'; + } else { + $out .= '' . $GLOBALS['LANG']->getLL('noPluginSelected') . ''; } $out .= $GLOBALS['LANG']->sL(t3lib_BEfunc::getLabelFromItemlist('tt_content', 'pages', $row['pages']), 1) . '
';