diff options
author | Bharat Mediratta <bharat@menalto.com> | 2009-08-30 17:41:34 -0700 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2009-08-30 17:41:34 -0700 |
commit | 74a124b261dabfae2613449addbcabc4310994ac (patch) | |
tree | 91f3e6f36e12a97298ec5b01ae511fe0d530a856 | |
parent | e6c2fe60c42efee8ce898e208befe63565d98ffc (diff) |
Oops, fix up the show argument that I "fixed" in the last change.
-rw-r--r-- | themes/default/views/page.html.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/themes/default/views/page.html.php b/themes/default/views/page.html.php index ebe6b0cf..7d181ea0 100644 --- a/themes/default/views/page.html.php +++ b/themes/default/views/page.html.php @@ -95,7 +95,7 @@ <ul class="gBreadcrumbs"> <? foreach ($parents as $parent): ?> <li> - <a href="<?= url::site("albums/{$parent->id}?show=$theme->item()->id") ?>"> + <a href="<?= url::site("albums/{$parent->id}?show={$theme->item()->id}") ?>"> <?= html::purify($parent->title) ?> </a> </li> |