diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/photos.php | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/include/photos.php b/include/photos.php index 5c03b2cdb..eebddd393 100644 --- a/include/photos.php +++ b/include/photos.php @@ -268,7 +268,11 @@ function photos_albums_list($channel,$observer) { if($albums) { $ret['success'] = true; foreach($albums as $k => $album) { - $entry = array('text' => $album['album'], 'urlencode' => urlencode($album['album']),'bin2hex' => bin2hex($album['album'])); + $entry = array( + 'text' => $album['album'], + 'url' => z_root() . '/photos/' . $channel['channel_address'] . '/album/' . bin2hex($album['album']), + 'urlencode' => urlencode($album['album']), + 'bin2hex' => bin2hex($album['album'])); $ret[] = $entry; } } |