mirror of
https://github.com/Icinga/icingaweb2-module-graphite.git
synced 2026-05-28 04:34:57 -04:00
parent
dfed0eec69
commit
b66c785616
2 changed files with 2 additions and 2 deletions
|
|
@ -133,7 +133,7 @@ class ShowController extends Controller
|
|||
);
|
||||
|
||||
foreach ($this->params->toArray() as $val) {
|
||||
$query->where($val[0], $val[1]);
|
||||
$query->where($val[0], urldecode($val[1]));
|
||||
}
|
||||
|
||||
$img = $this->applyGraphParams(current($query->getImages($template)))
|
||||
|
|
|
|||
|
|
@ -106,6 +106,6 @@ class GraphiteUtil
|
|||
|
||||
public static function escape($string)
|
||||
{
|
||||
return preg_replace('/[^a-zA-Z0-9\*\-]/', '_', $string);
|
||||
return preg_replace('/[^a-zA-Z0-9\*\-:]/', '_', $string);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue