summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChad Kieffer <chad@2tbsp.com>2008-12-01 06:57:37 +0000
committerChad Kieffer <chad@2tbsp.com>2008-12-01 06:57:37 +0000
commitab0fcb7453db7d93c9dc1dfd38e6d6f84a5b16b5 (patch)
tree28bc5fcf91ae8e288bc41612e02d8a23fb2b5d64
parent26a512c3522b4f59a06f5e3146df5d466373c06e (diff)
In place editing in breadcrumbs is a bit much, plus, it breaks the layout. Removing, at least for now.
-rw-r--r--themes/default/views/header.html.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/themes/default/views/header.html.php b/themes/default/views/header.html.php
index 513147bc..3f98daa4 100644
--- a/themes/default/views/header.html.php
+++ b/themes/default/views/header.html.php
@@ -17,8 +17,8 @@
<? if ($page_type != "tag"): ?>
<ul id="gBreadcrumbs" class="gClearFix">
<? foreach ($parents as $parent): ?>
- <li><a href="<?= url::site("albums/{$parent->id}") ?>"><?= $parent->title_edit ?></a></li>
+ <li><a href="<?= url::site("albums/{$parent->id}") ?>"><?= $parent->title ?></a></li>
<? endforeach ?>
- <li class="active"><?= $item->title_edit ?></li>
+ <li class="active"><?= $item->title ?></li>
</ul>
<? endif ?>