Feature #24051 » tslib_content_PHP_SCRIPT.diff
typo3/sysext/cms/tslib/content/class.tslib_content_phpscript.php (revision ) | ||
---|---|---|
* @return string Output
|
||
*/
|
||
public function render($conf = array()) {
|
||
$incFile = $GLOBALS['TSFE']->tmpl->getFileName($conf['file']);
|
||
|
||
$file = isset($conf['file'])
|
||
? $this->cObj->stdWrap($conf['file'], $conf['file.'])
|
||
: $conf['file'];
|
||
|
||
$incFile = $GLOBALS['TSFE']->tmpl->getFileName($file);
|
||
$content = '';
|
||
if ($incFile && $GLOBALS['TSFE']->checkFileInclude($incFile)) {
|
||
// Added 31-12-00: Make backup...
|