2009-09-04 Rupert Germann <rupi@gmx.li>
* Fixed bug #11868 (Follow-up to #11828): added forgotten file version/tca.php (thanks to Sven Jürgens)
+ * Fixed bug #11827: Update wizard adds _CACHEFILE to extList
2009-09-04 Steffen Kamper <info@sk-typo3.de>
*/
function addExtToList(array $extKeys) {
// Get list of installed extensions and add this one.
- $listArr = array_keys($GLOBALS['TYPO3_LOADED_EXT']);
+ $tmpLoadedExt = $GLOBALS['TYPO3_LOADED_EXT'];
+ if (isset($tmpLoadedExt['_CACHEFILE'])) {
+ unset($tmpLoadedExt['_CACHEFILE']);
+ }
+
+ $listArr = array_keys($tmpLoadedExt);
$listArr = array_merge($listArr, $extKeys);
// Implode unique list of extensions to load and return: