From: Benni Mack Date: Mon, 15 Sep 2008 03:46:59 +0000 (+0000) Subject: Fixed Bug ##847: error in tslib_fe->getFromCache() (Thanks to Susanne Moog) X-Git-Tag: TYPO3_4-3-0alpha1~186 X-Git-Url: http://git.typo3.org/Packages/TYPO3.CMS.git/commitdiff_plain/5e8e7e41fca808d143059d2c99cd76c8ce8c4ab0 Fixed Bug ##847: error in tslib_fe->getFromCache() (Thanks to Susanne Moog) git-svn-id: https://svn.typo3.org/TYPO3v4/Core/trunk@4116 709f56b5-9817-0410-a4d7-c38de5d9e867 --- diff --git a/ChangeLog b/ChangeLog index 60683360b629..bedb99bf609e 100755 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2008-09-14 Benjamin Mack + + * Fixed Bug ##847: error in tslib_fe->getFromCache() (Thanks to Susanne Moog) + 2008-09-14 Stanislas Rolland * Fixed bug #9308: htmlArea RTE: link on colour name doesn't set colour diff --git a/typo3/sysext/cms/tslib/class.tslib_fe.php b/typo3/sysext/cms/tslib/class.tslib_fe.php index 37afbd8617ee..f99eedfc759d 100755 --- a/typo3/sysext/cms/tslib/class.tslib_fe.php +++ b/typo3/sysext/cms/tslib/class.tslib_fe.php @@ -1871,7 +1871,7 @@ require_once (PATH_t3lib.'class.t3lib_lock.php'); $this->cacheContentFlag = 1; // Setting flag, so we know, that some cached content has been loaded $this->cacheExpires = $row['expires']; - if ($this->TYPO3_CONF_VARS['FE']['debug'] || $this->config['config']['debug']) { + if ($this->TYPO3_CONF_VARS['FE']['debug'] || (isset($this->config['config']['debug']) && $this->config['config']['debug'])) { $dateFormat = $GLOBALS['TYPO3_CONF_VARS']['SYS']['ddmmyy']; $timeFormat = $GLOBALS['TYPO3_CONF_VARS']['SYS']['hhmm'];