mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-05-11 20:21:16 +00:00
propper passing of url params in page list
the links in the page browser were missing propper attribute values
This commit is contained in:
parent
04dc5f95a4
commit
e9adfa0f92
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user