From e9adfa0f92b7e9b25f0126e3d8740f8782edc235 Mon Sep 17 00:00:00 2001 From: Uwe Steinmann Date: Wed, 14 Aug 2013 09:12:20 +0200 Subject: [PATCH] propper passing of url params in page list the links in the page browser were missing propper attribute values --- views/bootstrap/class.Bootstrap.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/views/bootstrap/class.Bootstrap.php b/views/bootstrap/class.Bootstrap.php index fd6d2a2fa..ac8aebd55 100644 --- a/views/bootstrap/class.Bootstrap.php +++ b/views/bootstrap/class.Bootstrap.php @@ -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; } }