diff options
-rw-r--r-- | lib/class/album.class.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/class/album.class.php b/lib/class/album.class.php index 182d841e..533a4bfa 100644 --- a/lib/class/album.class.php +++ b/lib/class/album.class.php @@ -991,7 +991,9 @@ class Album extends database_object { $name = 'art.' . $type; - Config::get('web_path') . '/image.php?id=' . scrub_out($album_id) . '&auth=' . $sid . '&name=' . $name; + $url = Config::get('web_path') . '/image.php?id=' . scrub_out($album_id) . '&auth=' . $sid . '&name=' . $name; + + return $url; } // get_art_url |