diff --git a/html/includes/header.inc.php b/html/includes/header.inc.php
index 790506088..a26ede429 100644
--- a/html/includes/header.inc.php
+++ b/html/includes/header.inc.php
@@ -3,6 +3,16 @@
|
+
+Switch to Normal Width');
+}else{
+ echo('Switch to Widescreen');
+}
+?>
+
+
" rel="stylesheet" type="text/css" />
+
+ '); }
+ ?>
+
@@ -96,7 +107,6 @@ function popUp(URL)
'); }
diff --git a/includes/static-config.php b/includes/static-config.php
index 5d2ded289..2df0ebaab 100644
--- a/includes/static-config.php
+++ b/includes/static-config.php
@@ -986,6 +986,8 @@ $config['time']['twomonth'] = time() - (2 * 31 * 24 * 60 * 60);
$config['time']['threemonth'] = time() - (3 * 31 * 24 * 60 * 60);
$config['time']['sixmonth'] = time() - (6 * 31 * 24 * 60 * 60);
$config['time']['year'] = time() - (365 * 24 * 60 * 60);
+$config['time']['twoyear'] = time() - (2 * 365 * 24 * 60 * 60);
+
# IPMI sensor type mappings
$config['ipmi_unit']['Volts'] = 'voltage';
|