Fixed problems with title when open graph in status monitor in meta and nodo, tiquet: #2077
This commit is contained in:
parent
122f75054a
commit
df065fb10d
|
@ -56,7 +56,7 @@ if (file_exists ('../../include/languages/'.$user_language.'.mo')) {
|
|||
|
||||
echo '<link rel="stylesheet" href="../../include/styles/pandora.css" type="text/css"/>';
|
||||
|
||||
$label = str_replace('253D', '=', get_parameter('label'));
|
||||
$label = get_parameter('label');
|
||||
$label = base64_decode($label);
|
||||
$id = get_parameter('id');
|
||||
//$label = rawurldecode(urldecode(base64_decode(get_parameter('label', ''))));
|
||||
|
|
|
@ -1203,7 +1203,7 @@ foreach ($result as $row) {
|
|||
"type" => $graph_type,
|
||||
"period" => SECONDS_1DAY,
|
||||
"id" => $row["id_agente_modulo"],
|
||||
"label" => rawurlencode(urlencode(base64_encode($row["module_name"]))),
|
||||
"label" => base64_encode($row["module_name"]),
|
||||
"refresh" => SECONDS_10MINUTES
|
||||
);
|
||||
|
||||
|
|
Loading…
Reference in New Issue