summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnika Henke <anika@selfthinker.org>2011-10-05 20:17:34 +0100
committerAnika Henke <anika@selfthinker.org>2011-10-05 20:17:34 +0100
commit5f153e6cbdbdd4632e7f0ffd57ed90c32cbcf33e (patch)
tree081bd6356c8951e8f405bdb912088858f9eb9fc7
parente63733c3d1c99354dab2e61a96920bccc29c7f72 (diff)
downloadrpg-5f153e6cbdbdd4632e7f0ffd57ed90c32cbcf33e.tar.gz
rpg-5f153e6cbdbdd4632e7f0ffd57ed90c32cbcf33e.tar.bz2
switched back order of breadcrumbs
-rwxr-xr-xmain.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/main.php b/main.php
index 41d9347fd..367fd5e7f 100755
--- a/main.php
+++ b/main.php
@@ -92,12 +92,12 @@ $showTools = !tpl_getConf('hideTools') || ( tpl_getConf('hideTools') && $_SERVER
<!-- BREADCRUMBS -->
<?php if($conf['breadcrumbs'] || $conf['youarehere']): ?>
<div class="breadcrumbs">
- <?php if($conf['breadcrumbs']): ?>
- <div class="trace"><?php tpl_breadcrumbs() ?></div>
- <?php endif ?>
<?php if($conf['youarehere']): ?>
<div class="youarehere"><?php tpl_youarehere() ?></div>
<?php endif ?>
+ <?php if($conf['breadcrumbs']): ?>
+ <div class="trace"><?php tpl_breadcrumbs() ?></div>
+ <?php endif ?>
</div>
<?php endif ?>