Skip to content
Snippets Groups Projects
Commit 4b5a039f authored by Olav Morken's avatar Olav Morken
Browse files

Fix POST-redirect with associative array.

Thanks to Goro Sawada for reporting this bug!

git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@2709 44740490-163a-0410-bde0-09ae8108e29a
parent 9806520c
No related branches found
No related tags found
No related merge requests found
...@@ -48,7 +48,7 @@ function printItem($name, $value) { ...@@ -48,7 +48,7 @@ function printItem($name, $value) {
/* This is an array... */ /* This is an array... */
foreach ($value as $index => $item) { foreach ($value as $index => $item) {
printItem($name . '[' . var_export($index, TRUE) . ']', $item); printItem($name . '[' . $index . ']', $item);
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment