Index: typo3/sysext/cms/layout/db_new_content_el.php =================================================================== --- typo3/sysext/cms/layout/db_new_content_el.php (revision 5556) +++ typo3/sysext/cms/layout/db_new_content_el.php (working copy) @@ -461,7 +461,16 @@ * @return array Returns the content of wizardArray() function... */ function getWizardItems() { - return $this->wizardArray(); + $identifier = md5($this->id . $this->sys_language); + + // look up in cache + $array = $GLOBALS['typo3CacheManager']->getCache('cache_hash')->get($identifier); + if ($array === false) { + $array = $this->wizardArray(); + // store content in cache + $GLOBALS['typo3CacheManager']->getCache('cache_hash')->set($identifier, $array, array('ident_newCEWizardItems'), 0); + } + return $array; } /**