diff options
-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) ?> |