diff options
author | Bharat Mediratta <bharat@menalto.com> | 2009-08-30 17:17:14 -0700 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2009-08-30 17:17:14 -0700 |
commit | e6c2fe60c42efee8ce898e208befe63565d98ffc (patch) | |
tree | 3e37c8e40f88c42c49e4e761a9f1b924385a9e6e | |
parent | 1747335bde4b0bff81a8ee6569b1c76f01a7e638 (diff) |
Use $theme->item() instead of $item.
-rw-r--r-- | themes/default/views/page.html.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/themes/default/views/page.html.php b/themes/default/views/page.html.php index 636b2f99..ebe6b0cf 100644 --- a/themes/default/views/page.html.php +++ b/themes/default/views/page.html.php @@ -95,12 +95,12 @@ <ul class="gBreadcrumbs"> <? foreach ($parents as $parent): ?> <li> - <a href="<?= url::site("albums/{$parent->id}?show=$item->id") ?>"> + <a href="<?= url::site("albums/{$parent->id}?show=$theme->item()->id") ?>"> <?= html::purify($parent->title) ?> </a> </li> <? endforeach ?> - <li class="active"><?= html::purify($item->title) ?></li> + <li class="active"><?= html::purify($theme->item()->title) ?></li> </ul> <? endif ?> </div> |