From 804e8fc96cd0b4a78ceab23485be22f61d9996a2 Mon Sep 17 00:00:00 2001 From: Christian Kuhn Date: Wed, 15 Jul 2015 18:10:46 +0200 Subject: [PATCH] [!!!][TASK] Drop TYPO3_CONF_VARS['SYS]['form_enctype'] The ancient form_enctype setting was a fallback from the old days when some hosters decided uploading files in PHP is a bad idea. The fallback was thought to still allow casual data transfer. This is dropped now, the setting no longer used and removed from configuration. Resolves: #68178 Releases: master Change-Id: If16db4de44c0654b18efc5b1a9f0e3f46e079687 Reviewed-on: http://review.typo3.org/41314 Reviewed-by: Benjamin Mack Tested-by: Benjamin Mack Reviewed-by: Wouter Wolters Tested-by: Wouter Wolters --- Classes/FrontendEditPanel.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Classes/FrontendEditPanel.php b/Classes/FrontendEditPanel.php index 5ec4eee..f36bbbc 100644 --- a/Classes/FrontendEditPanel.php +++ b/Classes/FrontendEditPanel.php @@ -92,7 +92,7 @@ class FrontendEditPanel { $this->frontendController->set_no_cache('Frontend edit panel is shown', TRUE); $formName = 'TSFE_EDIT_FORM_' . substr($this->frontendController->uniqueHash(), 0, 4); - $formTag = '
'; + $formTag = ''; $sortField = $GLOBALS['TCA'][$table]['ctrl']['sortby']; $labelField = $GLOBALS['TCA'][$table]['ctrl']['label']; $hideField = $GLOBALS['TCA'][$table]['ctrl']['enablecolumns']['disabled'];