Index: t3lib/class.t3lib_befunc.php =================================================================== --- t3lib/class.t3lib_befunc.php (revision 10166) +++ t3lib/class.t3lib_befunc.php (revision ) @@ -3280,7 +3280,7 @@ public static function getListViewLink($urlParameters = array(), $linkTitle = '', $linkText = '') { $url = self::getModuleUrl('web_list', $urlParameters); - if (!t3lib_extMgm::isLoaded('list') || $url === FALSE) { + if (!t3lib_extMgm::isLoaded('recordlist') || $url === FALSE) { return ''; } else { return '' . Index: typo3/db_list.php =================================================================== --- typo3/db_list.php (revision 10121) +++ typo3/db_list.php (revision ) @@ -41,7 +41,7 @@ LF . 'Referer: ' . t3lib_div::getIndpEnv('HTTP_REFERER') ); -if (t3lib_extMgm::isLoaded('list')) { +if (t3lib_extMgm::isLoaded('recordlist')) { t3lib_utility_Http::redirect(t3lib_BEfunc::getModuleUrl('web_list', array(), '', TRUE) . '&' . $query); } else { $title = sprintf($GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_core.xml:extension.not.installed'), 'list'); Index: typo3/sysext/list/mod1/conf.php =================================================================== --- typo3/sysext/list/mod1/conf.php (revision 9821) +++ typo3/sysext/recordlist/mod1/conf.php (revision ) @@ -1,0 +1,0 @@ Index: typo3/sysext/list/mod1/index.php =================================================================== --- typo3/sysext/list/mod1/index.php (revision 10161) +++ typo3/sysext/recordlist/mod1/index.php (revision ) @@ -2,7 +2,7 @@ /*************************************************************** * Copyright notice * -* (c) 1999-2011 Kasper SkÃ¥rhøj (kasperYYYY@typo3.com) +* (c) 1999-2011 Kasper Skårhøj (kasperYYYY@typo3.com) * All rights reserved * * This script is part of the TYPO3 project. The TYPO3 project is @@ -34,10 +34,10 @@ * backend root directory. This has some historical and practical causes. * * $Id: index.php 10161 2011-01-20 14:54:34Z baschny $ - * Revised for TYPO3 3.6 November/2003 by Kasper SkÃ¥rhøj + * Revised for TYPO3 3.6 November/2003 by Kasper Skårhøj * XHTML compliant * - * @author Kasper SkÃ¥rhøj + * @author Kasper Skårhøj */ /** * [CLASS/FUNCTION INDEX of SCRIPT] @@ -74,7 +74,7 @@ /** * Script Class for the Web > List module; rendering the listing of records on a page * - * @author Kasper SkÃ¥rhøj + * @author Kasper Skårhøj * @package TYPO3 * @subpackage core */ Index: typo3/sysext/list/ext_autoload.php =================================================================== --- typo3/sysext/list/ext_autoload.php (revision 9821) +++ typo3/sysext/recordlist/ext_autoload.php (revision ) @@ -3,7 +3,7 @@ // This file was generated on 2009-10-26 22:04 -$extensionPath = t3lib_extMgm::extPath('list'); +$extensionPath = t3lib_extMgm::extPath('recordlistlist'); return array( 'sc_db_list' => $extensionPath . 'mod1/index.php', ); Index: typo3/sysext/list/ext_tables.php =================================================================== --- typo3/sysext/list/ext_tables.php (revision 9821) +++ typo3/sysext/recordlist/ext_tables.php (revision ) @@ -1,0 +1,0 @@ Index: typo3/backend.php =================================================================== --- typo3/backend.php (revision 10161) +++ typo3/backend.php (revision ) @@ -591,7 +591,7 @@ 'moduleMenuWidth' => $this->menuWidth - 1, 'topBarHeight' => (isset($GLOBALS['TBE_STYLES']['dims']['topFrameH']) ? intval($GLOBALS['TBE_STYLES']['dims']['topFrameH']) : 30), 'showRefreshLoginPopup' => isset($GLOBALS['TYPO3_CONF_VARS']['BE']['showRefreshLoginPopup']) ? intval($GLOBALS['TYPO3_CONF_VARS']['BE']['showRefreshLoginPopup']) : FALSE, - 'listModulePath' => t3lib_extMgm::isLoaded('list') ? t3lib_extMgm::extRelPath('list') . 'mod1/' : '', + 'listModulePath' => t3lib_extMgm::isLoaded('recordlist') ? t3lib_extMgm::extRelPath('recordlist') . 'mod1/' : '', 'debugInWindow' => $GLOBALS['BE_USER']->uc['debugInWindow'] ? 1 : 0, 'ContextHelpWindows' => array( 'width' => 600, Index: typo3/sysext/workspaces/Classes/Controller/PreviewController.php =================================================================== --- typo3/sysext/workspaces/Classes/Controller/PreviewController.php (revision 9931) +++ typo3/sysext/workspaces/Classes/Controller/PreviewController.php (revision ) @@ -182,7 +182,7 @@ 'moduleMenuWidth' => $this->menuWidth - 1, 'topBarHeight' => (isset($GLOBALS['TBE_STYLES']['dims']['topFrameH']) ? intval($GLOBALS['TBE_STYLES']['dims']['topFrameH']) : 30), 'showRefreshLoginPopup' => isset($GLOBALS['TYPO3_CONF_VARS']['BE']['showRefreshLoginPopup']) ? intval($GLOBALS['TYPO3_CONF_VARS']['BE']['showRefreshLoginPopup']) : FALSE, - 'listModulePath' => t3lib_extMgm::isLoaded('list') ? t3lib_extMgm::extRelPath('list') . 'mod1/' : '', + 'listModulePath' => t3lib_extMgm::isLoaded('recordlist') ? t3lib_extMgm::extRelPath('recordlist') . 'mod1/' : '', 'debugInWindow' => $GLOBALS['BE_USER']->uc['debugInWindow'] ? 1 : 0, 'ContextHelpWindows' => array( 'width' => 600, @@ -225,7 +225,6 @@ if ($GLOBALS['LANG']->charSet !== 'utf-8') { $t3Configuration['username'] = $GLOBALS['LANG']->csConvObj->conv($t3Configuration['username'], $GLOBALS['LANG']->charSet, 'utf-8'); $GLOBALS['LANG']->csConvObj->convArray($t3LLLcore, $GLOBALS['LANG']->charSet, 'utf-8'); - $GLOBALS['LANG']->csConvObj->convArray($t3LLLfileUpload, $GLOBALS['LANG']->charSet, 'utf-8'); } $js .= ' Index: t3lib/class.t3lib_clipboard.php =================================================================== --- t3lib/class.t3lib_clipboard.php (revision 10161) +++ t3lib/class.t3lib_clipboard.php (revision ) @@ -560,7 +560,7 @@ if ($this->fileMode) { $str = $GLOBALS['TBE_TEMPLATE']->dfw($str); } else { - if (t3lib_extMgm::isLoaded('list')) { + if (t3lib_extMgm::isLoaded('recordlist')) { $str = '