From 628ee0347957c3c39d7b466d98abb65b5010f609 Mon Sep 17 00:00:00 2001 From: Dmitry Dulepov Date: Tue, 12 Aug 2008 13:53:39 +0000 Subject: [PATCH] Fixed bug #9060: Wrong alert text in Constant editor git-svn-id: https://svn.typo3.org/TYPO3v4/Core/trunk@3970 709f56b5-9817-0410-a4d7-c38de5d9e867 --- ChangeLog | 4 ++++ t3lib/class.t3lib_tsparser_ext.php | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 3cda1e89c3bc..1eba54865141 100755 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2008-08-12 Dmitry Dulepov + + * Fixed bug #9060: Wrong alert text in Constant editor + 2008-08-11 Benjamin Mack * Fixed #8259: Cleanup: Call to t3lib_div::devLog() without key (Thanks to Francois Suter) diff --git a/t3lib/class.t3lib_tsparser_ext.php b/t3lib/class.t3lib_tsparser_ext.php index 768a8617a2bf..2797f81ce891 100755 --- a/t3lib/class.t3lib_tsparser_ext.php +++ b/t3lib/class.t3lib_tsparser_ext.php @@ -1311,7 +1311,7 @@ class t3lib_tsparser_ext extends t3lib_TStemplate { } if ($copyFile && @is_file($copyFile)) { - $p_field.=''; + $p_field .= ''; } // Upload? @@ -1358,7 +1358,7 @@ class t3lib_tsparser_ext extends t3lib_TStemplate { } - $deleteIconHTML = 'Revert to default Constant'; + $deleteIconHTML = 'Revert to default Constant'; $editIconHTML = 'Edit this Constant'; $constantCheckbox = ''; -- 2.20.1