propper passing of url params in page list

the links in the page browser were missing propper attribute values
This commit is contained in:
Uwe Steinmann 2013-08-14 09:12:20 +02:00
parent 04dc5f95a4
commit e9adfa0f92

View File

@ -532,8 +532,8 @@ background-image: linear-gradient(to bottom, #882222, #111111);;
continue;
}
if (is_array($value)) {
foreach ($value as $subvalue) {
$resultsURI .= ($first ? "?" : "&").$key."%5B%5D=".$subvalue;
foreach ($value as $subkey=>$subvalue) {
$resultsURI .= ($first ? "?" : "&").$key."%5B".$subkey."%5D=".$subvalue;
$first = false;
}
}