summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuillaume Mazoyer <respawneral@gmail.com>2014-08-10 21:29:54 +0200
committerGuillaume Mazoyer <respawneral@gmail.com>2014-08-10 21:29:54 +0200
commitaf5ffca855baa020359254d88d2aacc3f04cc947 (patch)
tree77ad39f79bae5aea324fb21d969a7be5e76d8cda
parentbed7184fbbe63aec30add514b7f9f451dc93d91a (diff)
Fix typo.
-rw-r--r--includes/config.defaults.php6
-rw-r--r--index.php2
2 files changed, 4 insertions, 4 deletions
diff --git a/includes/config.defaults.php b/includes/config.defaults.php
index b333e5d..06fac62 100644
--- a/includes/config.defaults.php
+++ b/includes/config.defaults.php
@@ -5,10 +5,10 @@
* Make changes to the configuration array in config.php.
*/
-$config = array (
+$config = array(
// Frontpage configuration
- 'frontpage' => array (
+ 'frontpage' => array(
// Use Bootstrap theme
'bootstrap_theme' => true,
// Custom Bootstrap theme
@@ -32,7 +32,7 @@ $config = array (
),
// Documentation (must be HTML)
- 'doc' => array (
+ 'doc' => array(
// Documentation for the 'show route' query
'bgp' => array(
'command' => 'show route IP_ADDRESS',
diff --git a/index.php b/index.php
index 7220c7b..0ea98c4 100644
--- a/index.php
+++ b/index.php
@@ -225,7 +225,7 @@ final class LookingGlass {
if ($this->frontpage['bootstrap_theme']) {
print '<link href="libs/bootstrap-3.2.0/css/bootstrap-theme.min.css" rel="stylesheet" />';
}
- if ($this->frontpage['custom_boostrap_theme']) {
+ if ($this->frontpage['custom_bootstrap_theme']) {
print '<link href="'.$this->frontpage['custom_bootstrap_theme'].'" rel="stylesheet" />';
}
print '<link href="'.$this->frontpage['css'].'" rel="stylesheet" />';