Bug #17713 » 6576_B.patch
typo3_src-4.1.5/typo3/sysext/cms/tslib/class.tslib_content_new.php 2008-05-16 14:59:11.000000000 +-0200 | ||
---|---|---|
// shortcut (no further processing necessary)
|
||
if (!$conf['exclude']) return '&'.t3lib_div::getIndpEnv('QUERY_STRING');
|
||
|
||
$q_in = array();
|
||
foreach (explode('&',t3lib_div::getIndpEnv('QUERY_STRING')) as $arg) {
|
||
list($k,$v) = explode('=',$arg);
|
||
$q_in[$k] = $v;
|
||
if($k) $q_in[$k] = $v;
|
||
}
|
||
$rawValues = TRUE;
|
||
}
|
||
|
||
if ($conf['exclude']) {
|
||
$q_out = array();
|