From 5fc6e348f4abd38ae6c1ba734625761d2f5d4660 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Frank=20N=C3=A4gler?= Date: Sat, 29 Nov 2014 16:53:51 +0100 Subject: [PATCH] [BUGFIX] Fix broken table in Template module Fix broken table in Template module > Info/Modify Follow-up for http://review.typo3.org/34760 Resolves: #63426 Related: #63417 Releases: master Change-Id: I7434d4b86380413ef34794fc1eaa79661fdc5df2 Reviewed-on: http://review.typo3.org/34771 Reviewed-by: Andreas Fernandez Tested-by: Andreas Fernandez Reviewed-by: Christian Kuhn Tested-by: Christian Kuhn --- .../TypoScriptTemplateInformationModuleFunctionController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/typo3/sysext/tstemplate/Classes/Controller/TypoScriptTemplateInformationModuleFunctionController.php b/typo3/sysext/tstemplate/Classes/Controller/TypoScriptTemplateInformationModuleFunctionController.php index a63aa142e2df..82cb8bad3d1f 100644 --- a/typo3/sysext/tstemplate/Classes/Controller/TypoScriptTemplateInformationModuleFunctionController.php +++ b/typo3/sysext/tstemplate/Classes/Controller/TypoScriptTemplateInformationModuleFunctionController.php @@ -72,7 +72,7 @@ class TypoScriptTemplateInformationModuleFunctionController extends AbstractFunc array('title' => $lang->sL('LLL:EXT:lang/locallang_common.xlf:editField', TRUE)) ); $ret .= $startAnchor . '' . $label . ''; - $ret .= '' . $data . $startAnchor . ' ' . $icon . ''; + $ret .= '' . $data . '' . $startAnchor . '' . $icon . ''; return $ret; } -- 2.20.1