Skip to content

Commit d9dddaa

Browse files
author
Jeffrey Lensen
committed
Fix for displaying real host/cluster name
Removed unnecessary div
1 parent 20b2a0c commit d9dddaa

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

graph_all_periods.php

+6-4
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,18 @@
1818
$c = "*";
1919

2020
$graph_args = "env=$env&c=$c&h=$h$graph$metric";
21+
$graph_args_real = "env=$env&c=$realcluster&h=$realhost$graph$metric";
2122

2223
include_once "./header.php";
2324

2425
print "
25-
<div id=\"menu\"><div class=\"menu_row\">
26+
<div id=\"menu\">
2627
<div class=\"menu_cell\">
27-
<a href=\"/?$graph_args\">Go to $realcluster $realhost overview</a>
28+
<a href=\"/?$graph_args_real\">Go to $realcluster $realhost overview</a>
2829
</div>
29-
</div></div>
30-
<div id=\"main\">
30+
</div>
31+
</div>
32+
<div id=\"main\">
3133
";
3234

3335
foreach ($conf["graph_all_periods_timeframes"] as $tf) {

0 commit comments

Comments
 (0)