diff options
-rw-r--r-- | docs/configuration.md | 2 | ||||
-rw-r--r-- | includes/config.defaults.php | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/docs/configuration.md b/docs/configuration.md index f37ab6b..85d2026 100644 --- a/docs/configuration.md +++ b/docs/configuration.md @@ -70,7 +70,7 @@ $config['frontpage']['show_visitor_ip'] = true; Defines if the visitor IP address should be displayed. ```php -$config['frontpage']['order'] = array('routers', 'commands', 'parameters', 'buttons'); +$config['frontpage']['order'] = array('routers', 'commands', 'parameter', 'buttons'); ``` Sets the order of the sections that are displayed. diff --git a/includes/config.defaults.php b/includes/config.defaults.php index 1263a41..87c6dae 100644 --- a/includes/config.defaults.php +++ b/includes/config.defaults.php @@ -52,8 +52,8 @@ $config = array( 'show_title' => true, // Show visitor IP address 'show_visitor_ip' => true, - // Frontpage order you can use: routers, commands, parameters, buttons - 'order' => array('routers', 'commands', 'parameters', 'buttons') + // Frontpage order you can use: routers, commands, parameter, buttons + 'order' => array('routers', 'commands', 'parameter', 'buttons') ), // Contact (both null for no contact) |