diff options
Diffstat (limited to '')
-rw-r--r-- | index.php | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -10,7 +10,7 @@ $h = array(); | |||
10 | 10 | ||
11 | # show all categorized hosts | 11 | # show all categorized hosts |
12 | foreach($CONFIG['cat'] as $cat => $hosts) { | 12 | foreach($CONFIG['cat'] as $cat => $hosts) { |
13 | printf("<h1>%s</h1>\n", $cat); | 13 | printf("<h2>%s</h2>\n", $cat); |
14 | host_summary($hosts); | 14 | host_summary($hosts); |
15 | $h = array_merge($h, $hosts); | 15 | $h = array_merge($h, $hosts); |
16 | } | 16 | } |
@@ -21,7 +21,7 @@ $uhosts = array_diff($chosts, $h); | |||
21 | 21 | ||
22 | # show all uncategorized hosts | 22 | # show all uncategorized hosts |
23 | if ($uhosts) { | 23 | if ($uhosts) { |
24 | echo "<h1>uncategorized</h1>\n"; | 24 | echo "<h2>uncategorized</h2>\n"; |
25 | host_summary($uhosts); | 25 | host_summary($uhosts); |
26 | } | 26 | } |
27 | 27 | ||