--- typo3_src-4.5/t3lib/class.t3lib_div.php Thu Feb 10 10:52:27 2011 +++ typo3_src-4.5/t3lib/class.t3lib_div2.php Thu Feb 10 10:53:39 2011 @@ -5308,7 +5308,12 @@ * @return string Final class name to instantiate with "new [classname]" */ protected function getClassName($className) { - return (class_exists($className) && class_exists('ux_' . $className, FALSE) ? self::getClassName('ux_' . $className) : $className); + if (class_exists($className)) { + while (class_exists('ux_' . $className, FALSE)) { + $className = 'ux_' . $className; + } + } + return $className; } /**