diff options
author | Anika Henke <anika@selfthinker.org> | 2011-10-05 20:17:34 +0100 |
---|---|---|
committer | Anika Henke <anika@selfthinker.org> | 2011-10-05 20:17:34 +0100 |
commit | 5f153e6cbdbdd4632e7f0ffd57ed90c32cbcf33e (patch) | |
tree | 081bd6356c8951e8f405bdb912088858f9eb9fc7 | |
parent | e63733c3d1c99354dab2e61a96920bccc29c7f72 (diff) | |
download | rpg-5f153e6cbdbdd4632e7f0ffd57ed90c32cbcf33e.tar.gz rpg-5f153e6cbdbdd4632e7f0ffd57ed90c32cbcf33e.tar.bz2 |
switched back order of breadcrumbs
-rwxr-xr-x | main.php | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 ?> |