summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xusr/local/www/status_rrd_graph.php14
1 files changed, 10 insertions, 4 deletions
diff --git a/usr/local/www/status_rrd_graph.php b/usr/local/www/status_rrd_graph.php
index e336c98..5b393fe 100755
--- a/usr/local/www/status_rrd_graph.php
+++ b/usr/local/www/status_rrd_graph.php
@@ -156,9 +156,17 @@ if($end < $start) {
}
$seconds = $end - $start;
-
+
+$styles = array('inverse' => gettext('Inverse'),
+ 'absolute' => gettext('Absolute'));
+
+// Set default and override later
+$curstyle = "inverse";
+
if ($_GET['style']) {
- $curstyle = $_GET['style'];
+ foreach($styles as $style)
+ if($style == $_GET['style'])
+ $curstyle = $_GET['style'];
} else {
if(! empty($config['rrd']['style'])) {
$curstyle = $config['rrd']['style'];
@@ -208,8 +216,6 @@ foreach($databases as $database) {
$ui_databases = array_merge($dbheader, $databases);
$custom_databases = array_merge($dbheader_custom, $databases);
-$styles = array('inverse' => gettext('Inverse'),
- 'absolute' => gettext('Absolute'));
$graphs = array("8hour", "day", "week", "month", "quarter", "year", "4year");
$periods = array("absolute" => gettext("Absolute Timespans"), "current" => gettext("Current Period"), "previous" => gettext("Previous Period"));
$graph_length = array(
OpenPOWER on IntegriCloud