Bug #23649 ยป 15861.diff
class.tx_felogin_pi1.php 2010-09-29 19:41:47.000000000 +0200 | ||
---|---|---|
if (is_array($val)) {
|
||
foreach ($val as $key1 => $val1) {
|
||
if ($this->conf['preserveGETvars'] == 'all' || in_array($key . '[' . $key1 .']', $preserveVars)) {
|
||
$params .= '&' . $key . '[' . $key1 . ']=' . $val1;
|
||
$params .= '&' . $key . '[' . $key1 . ']=' . urlencode($val1);
|
||
}
|
||
}
|
||
} else {
|
||
if (!in_array($key, array('id','no_cache','logintype','redirect_url','cHash'))) {
|
||
$params .= '&' . $key . '=' . $val;
|
||
$params .= '&' . $key . '=' . urlencode($val);
|
||
}
|
||
}
|
||
}
|