You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
BugFor errors / faults / flaws / inconsistencies etc.MajorIndicates the severity or impact or benefit of an issue is much higher than normal but not critical.
To get a URL for the Flash Charts the Piwik_url is used to generate the Link using http_build_query assuming that the arg_seperator is set to “&” but in some enviroments it is set to “&” which produces broken URLs because you escape the URLs after the generation for the Flash Chart.
Possible Solutions:
http_build_query($data,"",“&”);
or
.htaccess to overwrite this settings
php_value arg_separator.output &
php_value arg_separator.input &
php_value arg_separator &
The text was updated successfully, but these errors were encountered:
BugFor errors / faults / flaws / inconsistencies etc.MajorIndicates the severity or impact or benefit of an issue is much higher than normal but not critical.
To get a URL for the Flash Charts the Piwik_url is used to generate the Link using http_build_query assuming that the arg_seperator is set to “&” but in some enviroments it is set to “&” which produces broken URLs because you escape the URLs after the generation for the Flash Chart.
Possible Solutions:
http_build_query($data,"",“&”);
or
.htaccess to overwrite this settings
php_value arg_separator.output &
php_value arg_separator.input &
php_value arg_separator &
The text was updated successfully, but these errors were encountered: