Index: t3lib/class.t3lib_tceforms_inline.php =================================================================== --- t3lib/class.t3lib_tceforms_inline.php (revision 3975) +++ t3lib/class.t3lib_tceforms_inline.php (working copy) @@ -1028,7 +1028,6 @@ // Create an instance of the document template object $SOBE->doc = t3lib_div::makeInstance('template'); $SOBE->doc->backPath = $GLOBALS['BACK_PATH']; - $SOBE->doc->docType = 'xhtml_trans'; // Initialize TCEforms (rendering the forms) $SOBE->tceforms = t3lib_div::makeInstance('t3lib_TCEforms'); $SOBE->tceforms->inline =& $this; @@ -2375,4 +2374,4 @@ if (defined('TYPO3_MODE') && $TYPO3_CONF_VARS[TYPO3_MODE]['XCLASS']['t3lib/class.t3lib_tceforms_inline.php']) { include_once($TYPO3_CONF_VARS[TYPO3_MODE]['XCLASS']['t3lib/class.t3lib_tceforms_inline.php']); } -?> \ No newline at end of file +?> Index: typo3/class.browse_links.php =================================================================== --- typo3/class.browse_links.php (revision 3975) +++ typo3/class.browse_links.php (working copy) @@ -883,7 +883,6 @@ // Creating backend template object: $this->doc = t3lib_div::makeInstance('template'); - $this->doc->docType= 'xhtml_trans'; $this->doc->backPath = $BACK_PATH; // Load the Prototype library and browse_links.js Index: typo3/file_list.php =================================================================== --- typo3/file_list.php (revision 3975) +++ typo3/file_list.php (working copy) @@ -168,7 +168,6 @@ $this->doc = t3lib_div::makeInstance('template'); $this->doc->backPath = $BACK_PATH; $this->doc->setModuleTemplate('templates/file_list.html'); - $this->doc->docType = 'xhtml_trans'; // Validating the input "id" (the path, directory!) and checking it against the mounts of the user. $this->id = $this->basicFF->is_directory($this->id); Index: typo3/alt_shortcut.php =================================================================== --- typo3/alt_shortcut.php (revision 3975) +++ typo3/alt_shortcut.php (working copy) @@ -250,7 +250,6 @@ $this->doc = t3lib_div::makeInstance('template'); $this->doc->backPath = $BACK_PATH; $this->doc->form='
'; - $this->doc->docType='xhtml_trans'; $this->doc->divClass='typo3-shortcut'; $this->doc->JScode.=$this->doc->wrapScriptTags(' function jump(url,modName,mainModName) { // Index: typo3/alt_doc_nodoc.php =================================================================== --- typo3/alt_doc_nodoc.php (revision 3975) +++ typo3/alt_doc_nodoc.php (working copy) @@ -98,7 +98,6 @@ // Start the template object: $this->doc = t3lib_div::makeInstance('mediumDoc'); - $this->doc->docType = 'xhtml_trans'; $this->doc->bodyTagMargins['x']=5; $this->doc->bodyTagMargins['y']=5; $this->doc->backPath = $BACK_PATH; @@ -204,4 +203,4 @@ $SOBE->init(); $SOBE->main(); $SOBE->printContent(); -?> \ No newline at end of file +?> Index: typo3/dummy.php =================================================================== --- typo3/dummy.php (revision 3975) +++ typo3/dummy.php (working copy) @@ -77,7 +77,6 @@ global $TBE_TEMPLATE; // Start page - $TBE_TEMPLATE->docType = 'xhtml_trans'; $this->content.=$TBE_TEMPLATE->startPage('Dummy document'); // End page: Index: typo3/alt_palette.php =================================================================== --- typo3/alt_palette.php (revision 3975) +++ typo3/alt_palette.php (working copy) @@ -264,7 +264,6 @@ $this->doc->bodyTagMargins['x']=0; $this->doc->bodyTagMargins['y']=0; $this->doc->form=''; - $this->doc->docType = 'xhtml_trans'; $this->doc->backPath = ''; // In case the palette is opened in a SEPARATE window (as the case is with frontend editing) then another body-tag id should be used (so we don't get the background image for the palette shown!) @@ -366,4 +365,4 @@ $SOBE->init(); $SOBE->main(); $SOBE->printContent(); -?> \ No newline at end of file +?> Index: typo3/show_item.php =================================================================== --- typo3/show_item.php (revision 3975) +++ typo3/show_item.php (working copy) @@ -209,7 +209,6 @@ // Initialize document template object: $this->doc = t3lib_div::makeInstance('smallDoc'); $this->doc->backPath = $BACK_PATH; - $this->doc->docType = 'xhtml_trans'; // Starting the page by creating page header stuff: $this->content.=$this->doc->startPage($GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_core.xml:show_item.php.viewItem')); @@ -581,4 +580,4 @@ $SOBE->init(); $SOBE->main(); $SOBE->printContent(); -?> \ No newline at end of file +?> Index: typo3/alt_topmenu_dummy.php =================================================================== --- typo3/alt_topmenu_dummy.php (revision 3975) +++ typo3/alt_topmenu_dummy.php (working copy) @@ -118,7 +118,6 @@ $alt_menuObj = t3lib_div::makeInstance('alt_menu_functions'); // Start page - $TBE_TEMPLATE->docType = 'xhtml_trans'; $TBE_TEMPLATE->bodyTagId.= '-iconmenu'; $TBE_TEMPLATE->JScodeArray[] = $alt_menuObj->generateMenuJScode($loadModules->modules); @@ -166,7 +165,6 @@ global $TBE_TEMPLATE; // Start page - $TBE_TEMPLATE->docType = 'xhtml_trans'; $this->content.=$TBE_TEMPLATE->startPage('Top frame dummy display'); // End page: @@ -203,4 +201,4 @@ $SOBE = t3lib_div::makeInstance('SC_alt_topmenu_dummy'); $SOBE->main(); $SOBE->printContent(); -?> \ No newline at end of file +?> Index: typo3/index.php =================================================================== --- typo3/index.php (revision 3975) +++ typo3/index.php (working copy) @@ -168,7 +168,6 @@ global $TBE_TEMPLATE, $TYPO3_CONF_VARS, $BE_USER; // Initialize template object: - $TBE_TEMPLATE->docType = 'xhtml_trans'; $TBE_TEMPLATE->bodyTagAdditions = ' onload="startUp();"'; $TBE_TEMPLATE->moduleTemplate = $TBE_TEMPLATE->getHtmlTemplate('templates/login.html'); Index: typo3/wizard_rte.php =================================================================== --- typo3/wizard_rte.php (revision 3975) +++ typo3/wizard_rte.php (working copy) @@ -113,7 +113,6 @@ // Starting the document template object: $this->doc = t3lib_div::makeInstance('mediumDoc'); - $this->doc->docType = 'xhtml_trans'; $this->doc->divClass = ''; // Need to NOT have the page wrapped in DIV since if we do that we destroy the feature that the RTE spans the whole height of the page!!! $this->doc->form=''; $this->doc->backPath = $BACK_PATH; Index: typo3/template.php =================================================================== --- typo3/template.php (revision 3975) +++ typo3/template.php (working copy) @@ -175,7 +175,7 @@ var $JScode=''; // Additional header code (eg. a JavaScript section) could be accommulated in this var. It will be directly outputted in the header. var $JScodeArray = array(); // Similar to $JScode but for use as array with associative keys to prevent double inclusion of JS code. a '; @@ -547,7 +546,6 @@ // If no access or id value, create empty document: $this->doc = t3lib_div::makeInstance('template'); - $this->doc->docType='xhtml_trans'; $this->doc->backPath = $BACK_PATH; $this->doc->setModuleTemplate('templates/db_layout.html'); Index: typo3/sysext/cms/layout/db_new_content_el.php =================================================================== --- typo3/sysext/cms/layout/db_new_content_el.php (revision 3975) +++ typo3/sysext/cms/layout/db_new_content_el.php (working copy) @@ -199,7 +199,6 @@ // Starting the document template object: $this->doc = t3lib_div::makeInstance('template'); - $this->doc->docType= 'xhtml_trans'; $this->doc->backPath = $BACK_PATH; $this->doc->setModuleTemplate('templates/db_new_content_el.html'); $this->doc->JScode=''; Index: typo3/sysext/version/cm1/index.php =================================================================== --- typo3/sysext/version/cm1/index.php (revision 3975) +++ typo3/sysext/version/cm1/index.php (working copy) @@ -200,7 +200,6 @@ $this->doc = t3lib_div::makeInstance('template'); $this->doc->backPath = $BACK_PATH; $this->doc->setModuleTemplate('templates/version.html'); - $this->doc->docType = 'xhtml_trans'; // Add styles $this->doc->inDocStylesArray[$GLOBALS['MCONF']['name']] = ' Index: typo3/sysext/setup/mod/index.php =================================================================== --- typo3/sysext/setup/mod/index.php (revision 3975) +++ typo3/sysext/setup/mod/index.php (working copy) @@ -246,7 +246,6 @@ $this->doc = t3lib_div::makeInstance('template'); $this->doc->backPath = $BACK_PATH; $this->doc->setModuleTemplate('templates/setup.html'); - $this->doc->docType = 'xhtml_trans'; $this->doc->JScodeLibArray['dyntabmenu'] = $this->doc->getDynTabMenuJScode(); $this->doc->form = ''; Index: typo3/sysext/dbal/mod1/index.php =================================================================== --- typo3/sysext/dbal/mod1/index.php (revision 3975) +++ typo3/sysext/dbal/mod1/index.php (working copy) @@ -79,7 +79,6 @@ $this->doc = t3lib_div::makeInstance('noDoc'); $this->doc->backPath = $BACK_PATH; $this->doc->form=''; - $this->doc->docType = 'xhtml_trans'; // JavaScript $this->doc->JScode = $this->doc->wrapScriptTags(' Index: typo3/sysext/impexp/app/index.php =================================================================== --- typo3/sysext/impexp/app/index.php (revision 3975) +++ typo3/sysext/impexp/app/index.php (working copy) @@ -292,7 +292,6 @@ // Start document template object: $this->doc = t3lib_div::makeInstance('mediumDoc'); $this->doc->backPath = $BACK_PATH; - $this->doc->docType = 'xhtml_trans'; $this->doc->bodyTagId = 'imp-exp-mod'; // JavaScript Index: typo3/sysext/rtehtmlarea/mod2/class.tx_rtehtmlarea_acronym_mod.php =================================================================== --- typo3/sysext/rtehtmlarea/mod2/class.tx_rtehtmlarea_acronym_mod.php (revision 3975) +++ typo3/sysext/rtehtmlarea/mod2/class.tx_rtehtmlarea_acronym_mod.php (working copy) @@ -50,7 +50,6 @@ global $BE_USER,$LANG,$BACK_PATH; $this->doc = t3lib_div::makeInstance('template'); - $this->doc->docType = 'xhtml_trans'; $this->doc->backPath = $BACK_PATH; $this->doc->styleSheetFile = ""; $this->doc->styleSheetFile_post = ""; Index: typo3/sysext/rtehtmlarea/mod3/class.tx_rtehtmlarea_dam_browse_links.php =================================================================== --- typo3/sysext/rtehtmlarea/mod3/class.tx_rtehtmlarea_dam_browse_links.php (revision 3975) +++ typo3/sysext/rtehtmlarea/mod3/class.tx_rtehtmlarea_dam_browse_links.php (working copy) @@ -288,7 +288,6 @@ // Creating backend template object: $this->doc = t3lib_div::makeInstance('template'); $this->doc->bodyTagAdditions = 'onLoad="initDialog();"'; - $this->doc->docType= 'xhtml_trans'; $this->doc->backPath = $BACK_PATH; } @@ -945,4 +944,4 @@ include_once($TYPO3_CONF_VARS[TYPO3_MODE]['XCLASS']['ext/rtehtmlarea/mod3/class.tx_rtehtmlarea_dam_browse_links.php']); } -?> \ No newline at end of file +?> Index: typo3/sysext/rtehtmlarea/mod3/class.tx_rtehtmlarea_browse_links.php =================================================================== --- typo3/sysext/rtehtmlarea/mod3/class.tx_rtehtmlarea_browse_links.php (revision 3975) +++ typo3/sysext/rtehtmlarea/mod3/class.tx_rtehtmlarea_browse_links.php (working copy) @@ -370,7 +370,6 @@ // Creating backend template object: $this->doc = t3lib_div::makeInstance('template'); $this->doc->bodyTagAdditions = 'onLoad="initDialog();"'; - $this->doc->docType= 'xhtml_trans'; $this->doc->backPath = $BACK_PATH; // BEGIN accumulation of header JavaScript: @@ -1182,4 +1181,4 @@ include_once($TYPO3_CONF_VARS[TYPO3_MODE]['XCLASS']['ext/rtehtmlarea/mod3/class.tx_rtehtmlarea_browse_links.php']); } -?> \ No newline at end of file +?> Index: typo3/sysext/rtehtmlarea/mod4/class.tx_rtehtmlarea_dam_browse_media.php =================================================================== --- typo3/sysext/rtehtmlarea/mod4/class.tx_rtehtmlarea_dam_browse_media.php (revision 3975) +++ typo3/sysext/rtehtmlarea/mod4/class.tx_rtehtmlarea_dam_browse_media.php (working copy) @@ -247,7 +247,6 @@ // Creating backend template object: $this->doc = t3lib_div::makeInstance('template'); $this->doc->bodyTagAdditions = 'onLoad="initDialog();"'; - $this->doc->docType= 'xhtml_trans'; $this->doc->backPath = $BACK_PATH; } @@ -1074,4 +1073,4 @@ include_once($TYPO3_CONF_VARS[TYPO3_MODE]['XCLASS']['ext/rtehtmlarea/mod4/class.tx_rtehtmlarea_dam_browse_media.php']); } -?> \ No newline at end of file +?> Index: typo3/sysext/rtehtmlarea/mod4/class.tx_rtehtmlarea_select_image.php =================================================================== --- typo3/sysext/rtehtmlarea/mod4/class.tx_rtehtmlarea_select_image.php (revision 3975) +++ typo3/sysext/rtehtmlarea/mod4/class.tx_rtehtmlarea_select_image.php (working copy) @@ -176,7 +176,6 @@ // Creating backend template object: $this->doc = t3lib_div::makeInstance('template'); $this->doc->bodyTagAdditions = $this->getBodyTagAdditions(); - $this->doc->docType= 'xhtml_trans'; $this->doc->backPath = $BACK_PATH; // Load the Prototype library and browse_links.js @@ -1212,4 +1211,4 @@ include_once($TYPO3_CONF_VARS[TYPO3_MODE]['XCLASS']['ext/rtehtmlarea/mod4/class.tx_rtehtmlarea_select_image.php']); } -?> \ No newline at end of file +?> Index: typo3/alt_clickmenu.php =================================================================== --- typo3/alt_clickmenu.php (revision 3975) +++ typo3/alt_clickmenu.php (working copy) @@ -1603,7 +1603,6 @@ // Initialize template object if (!$this->ajax) { $this->doc = t3lib_div::makeInstance('template'); - $this->doc->docType='xhtml_trans'; $this->doc->backPath = $BACK_PATH; } Index: typo3/listframe_loader.php =================================================================== --- typo3/listframe_loader.php (revision 3975) +++ typo3/listframe_loader.php (working copy) @@ -75,7 +75,6 @@ function main() { global $TBE_TEMPLATE; - $TBE_TEMPLATE->docType='xhtml_trans'; $TBE_TEMPLATE->divClass=''; $this->content.=$TBE_TEMPLATE->startPage('List Frame Loader'); $this->content.=$TBE_TEMPLATE->wrapScriptTags(' @@ -104,4 +103,4 @@ // Make instance: $SOBE = t3lib_div::makeInstance('SC_listframe_loader'); $SOBE->main(); -?> \ No newline at end of file +?> Index: typo3/show_rechis.php =================================================================== --- typo3/show_rechis.php (revision 3975) +++ typo3/show_rechis.php (working copy) @@ -96,7 +96,6 @@ // Create internal template object: $this->doc = t3lib_div::makeInstance('template'); $this->doc->backPath = $GLOBALS['BACK_PATH']; - $this->doc->docType = 'xhtml_trans'; $this->doc->setModuleTemplate('templates/show_rechis.html'); // Start the page header: Index: typo3/db_list.php =================================================================== --- typo3/db_list.php (revision 3975) +++ typo3/db_list.php (working copy) @@ -206,7 +206,6 @@ $this->doc = t3lib_div::makeInstance('template'); $this->doc->backPath = $BACK_PATH; $this->doc->setModuleTemplate('templates/db_list.html'); - $this->doc->docType='xhtml_trans'; // Loading current page record and checking access: $this->pageinfo = t3lib_BEfunc::readPageAccess($this->id,$this->perms_clause); Index: typo3/file_upload.php =================================================================== --- typo3/file_upload.php (revision 3975) +++ typo3/file_upload.php (working copy) @@ -155,7 +155,6 @@ // Setting template object $this->doc = t3lib_div::makeInstance('template'); - $this->doc->docType = 'xhtml_trans'; $this->doc->setModuleTemplate('templates/file_upload.html'); $this->doc->backPath = $BACK_PATH; Index: typo3/move_el.php =================================================================== --- typo3/move_el.php (revision 3975) +++ typo3/move_el.php (working copy) @@ -270,7 +270,6 @@ // Starting the document template object: $this->doc = t3lib_div::makeInstance('template'); - $this->doc->docType= 'xhtml_trans'; $this->doc->backPath = $BACK_PATH; $this->doc->setModuleTemplate('templates/move_el.html'); $this->doc->JScode='';