Mikesch-mp / icingaweb2-module-grafana

Grafana module for Icinga Web 2 (supports InfluxDB & Graphite)
https://icinga.com/community/
GNU General Public License v2.0
241 stars 95 forks source link

[v1.4.2] Deprecation warning with PHP 8: http_build_query #323

Open log1-c opened 1 year ago

log1-c commented 1 year ago

In case someone stumbles over this:

This is just for quickly fixing the deprecation message you get with Version 1.4.2 of the module together with PHP 8: (master branch/IcingaDB version of the module already have that fix)

Deprecated: http_build_query(): Passing null to parameter #2 ($numeric_prefix) of type string is deprecated in /usr/share/icingaweb2/modules/grafana/library/Grafana/Helpers/Timeranges.php on line 95

To fix this change line 95 to

['url' => 'grafana/dashboard?' . http_build_query($this->urlparams, '', '&', PHP_QUERY_RFC3986)],