From 639baa7bef7f58c86501b2f166ec272c0d5189e5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kasper=20Sk=C3=A5rh=C3=B8j?= <kasper@typo3.org> Date: Mon, 29 Mar 2004 14:37:13 +0000 Subject: [PATCH] Added getindpenv keyword to TYpoScript "getText" data types git-svn-id: https://svn.typo3.org/TYPO3v4/Core/trunk@161 709f56b5-9817-0410-a4d7-c38de5d9e867 --- typo3/sysext/cms/tslib/class.tslib_content.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/typo3/sysext/cms/tslib/class.tslib_content.php b/typo3/sysext/cms/tslib/class.tslib_content.php index 559a38d2ae61..57f43e35658b 100755 --- a/typo3/sysext/cms/tslib/class.tslib_content.php +++ b/typo3/sysext/cms/tslib/class.tslib_content.php @@ -4366,6 +4366,9 @@ class tslib_cObj { case 'getenv': $retVal= getenv($key); break; + case 'getindpenv': + $retVal= t3lib_div::getIndpEnv($key); + break; case 'field': $retVal= $fieldArray[$key]; break; -- GitLab