summaryrefslogtreecommitdiff
path: root/doku.php
diff options
context:
space:
mode:
authorMichael Hamann <michael@content-space.de>2010-11-30 18:34:10 +0100
committerMichael Hamann <michael@content-space.de>2010-11-30 18:46:28 +0100
commit359fab8b2f7d0847ef0cf9b669e6c8ffb0687525 (patch)
tree21294f130e32a797a2c0a5c7a2f4cce0f384ea99 /doku.php
parent38dc5fa6df9a0cd5afd16dc95600d7cf11b08877 (diff)
downloadrpg-359fab8b2f7d0847ef0cf9b669e6c8ffb0687525.tar.gz
rpg-359fab8b2f7d0847ef0cf9b669e6c8ffb0687525.tar.bz2
Revert "Fix for $conf['breadcrumbs'] < 0, FS#2107", new fix
This reverts commit 4871414204799044c31aa2764c4b4ca020e2331d. Additionally there is a new fix for FS#2107 that doesn't introduce a lot of checks but instead ensures that the configuration option can't be set to negative values when the configuration manager is used.
Diffstat (limited to 'doku.php')
-rw-r--r--doku.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/doku.php b/doku.php
index ccab843ee..1303f1ade 100644
--- a/doku.php
+++ b/doku.php
@@ -69,7 +69,7 @@ if(!$INFO['exists'] &&
}
//prepare breadcrumbs (initialize a static var)
-if ($conf['breadcrumbs'] > 0) breadcrumbs();
+if ($conf['breadcrumbs']) breadcrumbs();
// check upstream
checkUpdateMessages();