[Piwik-svn] r498 - trunk/modules
svnmaster at piwik.org
svnmaster at piwik.org
Thu May 29 05:08:14 CEST 2008
Author: matt
Date: 2008-05-29 05:08:13 +0200 (Thu, 29 May 2008)
New Revision: 498
Modified:
trunk/modules/Url.php
Log:
- fix #223 when default separator is not &, we not force it in the URL builder.
thanks for your help mneuhaus
Modified: trunk/modules/Url.php
===================================================================
--- trunk/modules/Url.php 2008-05-29 02:58:40 UTC (rev 497)
+++ trunk/modules/Url.php 2008-05-29 03:08:13 UTC (rev 498)
@@ -32,7 +32,7 @@
$urlValues[$key] = $value;
}
- $query = http_build_query($urlValues);
+ $query = http_build_query($urlValues, "", "&");
if(strlen($query) > 0)
{
More information about the Piwik-svn
mailing list