Project

General

Profile

Bug #16465 ยป alias_patch.txt

Administrator Admin, 2006-08-14 11:09

 
Index: typo3/sysext/cms/tslib/class.tslib_fe.php
===================================================================
--- typo3/sysext/cms/tslib/class.tslib_fe.php (revision 1675)
+++ typo3/sysext/cms/tslib/class.tslib_fe.php (working copy)
@@ -1183,7 +1183,7 @@
if (!$this->id) {
list($theAlias) = explode('&',t3lib_div::getIndpEnv('QUERY_STRING'));
$theAlias = trim($theAlias);
- $this->id = $theAlias ? $theAlias : 0;
+ $this->id = ($theAlias != '' && strpos($theAlias, '=') === false) ? $theAlias : 0;
}
}
    (1-1/1)