diff options
author | Guillaume Mazoyer <respawneral@gmail.com> | 2014-12-13 13:33:49 +0100 |
---|---|---|
committer | Guillaume Mazoyer <respawneral@gmail.com> | 2014-12-13 13:33:49 +0100 |
commit | 35a4e5cf48ba418fd9bce4b023a1f897823aafb8 (patch) | |
tree | 3d92f44cb985c350deb17940dfd343e5157faa9c /includes/config.defaults.php | |
parent | 7ac5011098f3c717f14c8059754a9b654798db85 (diff) |
Option to hide commands.
Set $config\['output'\]\['show_command'\] to true or false to show
or hide the command in the output.
Also fix ping/traceroute without FQDN on BIRD, Quagga and Cisco.
Diffstat (limited to 'includes/config.defaults.php')
-rw-r--r-- | includes/config.defaults.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/includes/config.defaults.php b/includes/config.defaults.php index f7fc6d4..7c3b583 100644 --- a/includes/config.defaults.php +++ b/includes/config.defaults.php @@ -43,6 +43,12 @@ $config = array( 'mail' => 'support@example.com' ), + // Output control + 'output' => array( + // Show or hide command in output + 'show_command' => true + ), + // Filters 'filters' => array(), |