diff options
author | Bharat Mediratta <bharat@menalto.com> | 2008-11-26 23:10:15 +0000 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2008-11-26 23:10:15 +0000 |
commit | e3fa1c8acd0e617651e9b4a613413dc51521c63d (patch) | |
tree | 4e3680bf83de92dc4c16249607f6bc84d7f440a5 | |
parent | 691faa0e83790c0dc40a937f875e3032843d91c3 (diff) |
Link to the albums in the album tree.
-rw-r--r-- | core/views/welcome.html.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/views/welcome.html.php b/core/views/welcome.html.php index c0f27d3b..6bbd3ec7 100644 --- a/core/views/welcome.html.php +++ b/core/views/welcome.html.php @@ -314,7 +314,7 @@ <? $current = $album_tree[$current]; ?> <ul> <li> - <?= $current->album->title ?> + <?= html::anchor("albums/{$current->album->id}", $current->album->title) ?> <? $stack[] = "CLOSE"; ?> <? if ($current->children): ?> <? $stack = array_merge($stack, $current->children) ?> |