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

Utilities: Make addURLParameter handle the case where someone has changed the...

Utilities: Make addURLParameter handle the case where someone has changed the parameter seperator for URLs.

git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@1550 44740490-163a-0410-bde0-09ae8108e29a
parent bac970ac
No related branches found
No related tags found
No related merge requests found
...@@ -184,7 +184,7 @@ class SimpleSAML_Utilities { ...@@ -184,7 +184,7 @@ class SimpleSAML_Utilities {
} }
$query = array_merge($oldQuery, $parameter); $query = array_merge($oldQuery, $parameter);
$url .= http_build_query($query); $url .= http_build_query($query, '', '&');
return $url; return $url;
} }
......
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