diff --git a/html/pages/device.php b/html/pages/device.php
index ef66a4d080..0e3d3c8462 100644
--- a/html/pages/device.php
+++ b/html/pages/device.php
@@ -24,14 +24,14 @@ echo("
");
echo('
');
-
-#echo("
-#
-#-
-#
-#
Overview
-#
-# ");
+if($config['show_overview_tab']) {
+echo("
+-
+
+
Overview
+
+ ");
+}
echo('-
diff --git a/includes/defaults.inc.php b/includes/defaults.inc.php
index ee3ffdb415..0b0bbfbd3a 100644
--- a/includes/defaults.inc.php
+++ b/includes/defaults.inc.php
@@ -50,6 +50,10 @@ $config['graph_colours']['blues'] = array('A0A0E5','8080BD','606096','40406F',
$config['graph_colours']['purples'] = array('CC7CCC','AF63AF','934A93','773177','5B185B','3F003F');
$config['graph_colours']['default'] = $config['graph_colours']['blues'];
+### Device page options
+
+$config['show_overview_tab'] = true;
+
### The device overview page options
$config['overview_show_sysDescr'] = true;