Skip to content

Commit b99be24

Browse files
authored
Merge pull request #44 from NETWAYS/fix/substr-deprecation
Add type check to substr_count to avoid deprecation warning
2 parents a923832 + 2281ab5 commit b99be24

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

library/Grafana/ProvidedHook/Icingadb/IcingaDbGrapher.php

+1-2
Original file line numberDiff line numberDiff line change
@@ -377,8 +377,7 @@ public function getPreviewHtml(Model $object, $report = false)
377377
}
378378

379379
if ($this->repeatable === "yes") {
380-
$panelEnd = ($this->panelId - 1) +
381-
intval(substr_count($object->state->performance_data, '=') / $this->numberMetrics);
380+
$panelEnd = ($this->panelId - 1) + intval(substr_count(strval($object->state->performance_data), '=') / $this->numberMetrics);
382381
$this->panelId = implode(
383382
',',
384383
range($this->panelId, $panelEnd)

0 commit comments

Comments
 (0)