From e299a504a6a3383ad64e30d3eb338d41af3628b0 Mon Sep 17 00:00:00 2001 From: Oliver Hader Date: Thu, 27 Mar 2008 22:13:32 +0000 Subject: [PATCH] Fixed bug #7947: IRRE - XCLASSes are not working with AJAX calls in t3lib_TCEforms_inline git-svn-id: https://svn.typo3.org/TYPO3v4/Core/trunk@3476 709f56b5-9817-0410-a4d7-c38de5d9e867 --- ChangeLog | 4 ++++ t3lib/class.t3lib_tceforms_inline.php | 8 ++++---- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index facc14c36187..7395b59ba1a1 100755 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2008-03-27 Oliver Hader + + * Fixed bug #7947: IRRE - XCLASSes are not working with AJAX calls in t3lib_TCEforms_inline (thanks to Malte Jansen) + 2008-03-26 Stanislas Rolland * Fixed bug #7944: htmlArea RTE: Configuration of mutually exclusive classes in very error prone diff --git a/t3lib/class.t3lib_tceforms_inline.php b/t3lib/class.t3lib_tceforms_inline.php index 922a5e5e84e7..e064022db087 100755 --- a/t3lib/class.t3lib_tceforms_inline.php +++ b/t3lib/class.t3lib_tceforms_inline.php @@ -1002,13 +1002,13 @@ class t3lib_TCEforms_inline { * @return void */ protected function processAjaxRequestConstruct(&$ajaxArguments) { - require_once(PATH_typo3.'template.php'); - require_once(PATH_t3lib.'class.t3lib_tceforms.php'); - require_once(PATH_t3lib.'class.t3lib_clipboard.php'); + global $SOBE, $BE_USER, $TYPO3_CONF_VARS; $GLOBALS['LANG']->includeLLFile('EXT:lang/locallang_alt_doc.xml'); - global $SOBE, $BE_USER; + require_once(PATH_typo3.'template.php'); + require_once(PATH_t3lib.'class.t3lib_tceforms.php'); + require_once(PATH_t3lib.'class.t3lib_clipboard.php'); // Create a new anonymous object: $SOBE = new stdClass(); -- 2.20.1