From 5fc6e348f4abd38ae6c1ba734625761d2f5d4660 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Frank=20N=C3=A4gler?= <typo3@naegler.net>
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 <a.fernandez@scripting-base.de>
Tested-by: Andreas Fernandez <a.fernandez@scripting-base.de>
Reviewed-by: Christian Kuhn <lolli@schwarzbu.ch>
Tested-by: Christian Kuhn <lolli@schwarzbu.ch>
---
 .../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 . '<strong>' . $label . '</strong></a>';
-		$ret .= '</td><td width="80%">' . $data . $startAnchor . '&nbsp;<span class="btn pull-right">' . $icon . '</span></a></td></tr>';
+		$ret .= '</td><td width="80%">' . $data . '</td><td>' . $startAnchor . '<span class="btn">' . $icon . '</span></a></td></tr>';
 		return $ret;
 	}
 
-- 
GitLab