+2009-02-20 Oliver Hader <oliver@typo3.org>
+
+ * Follow-up to bug #10452: Fixed flaws in PATH_INFO check for simulateStaticDocuments
+
2009-02-20 Stanislas Rolland <typo3@sjbr.ca>
* Fixed bug #8905: option+space for inserting non-braking space on Mac OSX does not work properly
}
// If PATH_INFO is defined as simulateStaticDocuments mode and has information:
- if ($this->conf['mode'] === 'PATH_INFO' && t3lib_div::getIndpEnv('PATH_INFO')) {
+ if (t3lib_div::getIndpEnv('PATH_INFO') && strpos(t3lib_div::getIndpEnv('TYPO3_SITE_SCRIPT'), 'index.php/') === 0) {
$parts = t3lib_div::trimExplode('/', t3lib_div::getIndpEnv('PATH_INFO'), true);
$pCount = count($parts);
if ($pCount > 1) {