From 8518d50572a429244c9fa343878096fb30d6284a Mon Sep 17 00:00:00 2001
From: Michael Oehlhof <typo3@oehlhof.de>
Date: Tue, 24 Nov 2015 01:33:47 +0100
Subject: [PATCH] [BUGFIX] Frontend editing: fixed error when edit whole record

Resolves: #71527
Releases: master
Change-Id: Ic48cb43cb1eb7ffb54efcba8066acc25c589b5e4
Reviewed-on: https://review.typo3.org/44924
Reviewed-by: Mathias Schreiber <mathias.schreiber@wmdb.de>
Tested-by: Mathias Schreiber <mathias.schreiber@wmdb.de>
Reviewed-by: Andreas Fernandez <typo3@scripting-base.de>
Tested-by: Andreas Fernandez <typo3@scripting-base.de>
---
 .../backend/Classes/Controller/EditDocumentController.php       | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/typo3/sysext/backend/Classes/Controller/EditDocumentController.php b/typo3/sysext/backend/Classes/Controller/EditDocumentController.php
index 8c695dd3d603..4720e7f98593 100644
--- a/typo3/sysext/backend/Classes/Controller/EditDocumentController.php
+++ b/typo3/sysext/backend/Classes/Controller/EditDocumentController.php
@@ -1415,7 +1415,7 @@ class EditDocumentController extends AbstractModule
                 // If only SOME fields are shown in the form, this will link the user to the FULL form:
                 if ($this->columnsOnly) {
                     $columnsOnlyButton = $buttonBar->makeLinkButton()
-                        ->setHref(htmlspecialchars(($this->R_URI . '&columnsOnly=')))
+                        ->setHref($this->R_URI . '&columnsOnly=')
                         ->setTitle($lang->getLL('editWholeRecord', true))
                         ->setIcon($this->moduleTemplate->getIconFactory()->getIcon(
                             'actions-document-open',
-- 
GitLab