[TYPO3-core] Bug #3241 addQueryString-method=GET
Martin Kutschker
Martin.Kutschker at blackbox.net
Wed May 3 10:40:31 CEST 2006
Hi!
It seems that a fix we discussed on the list has not made it into 4.0. I cannot search the list so I cannot find a reference, or maybe I had only some PMs with Stanislas. Anway in tslib_content::getQueryArguments() this
foreach ($q_out as $k => $v) {
$content .= '&'.$k.'='.($rawValues ? $v : rawurlencode($v));
}
should be that
if ($rawValues) {
foreach ($q_out as $k => $v) {
$content .= '&'.$k.'='.$v;
}
} else {
$content = t3lib_div::implodeArrayForUrl('',$q_out);
}
I have tested it (again) and commited it to HEAD and TYPO3_4-0(for reason see above).
Note: $rawValues is only set when you use the default method (QUERY_STRING).
Masi
More information about the TYPO3-team-core
mailing list