summaryrefslogtreecommitdiffstats
path: root/lib/class/song.class.php
diff options
context:
space:
mode:
authorKarl 'vollmerk' Vollmer <vollmer@ampache.org>2006-11-30 17:18:13 +0000
committerKarl 'vollmerk' Vollmer <vollmer@ampache.org>2006-11-30 17:18:13 +0000
commit0af24517dc17d953d5cc8fcd6f7f848d27f96163 (patch)
tree03fa0679582c0970392c2d176d6a72c06a832c89 /lib/class/song.class.php
parent1938861afbcd29110341780e099cf9effe4c2b9a (diff)
downloadampache-0af24517dc17d953d5cc8fcd6f7f848d27f96163.tar.gz
ampache-0af24517dc17d953d5cc8fcd6f7f848d27f96163.tar.bz2
ampache-0af24517dc17d953d5cc8fcd6f7f848d27f96163.zip
wups bad links
Diffstat (limited to 'lib/class/song.class.php')
-rw-r--r--lib/class/song.class.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/class/song.class.php b/lib/class/song.class.php
index 8e3581a5..8b9ceb64 100644
--- a/lib/class/song.class.php
+++ b/lib/class/song.class.php
@@ -609,8 +609,8 @@ class Song {
// Create Links for the different objects
$this->f_link = "<a href=\"" . conf('web_path') . "/song.php?action=single_song&amp;song_id=" . $this->id . "\">$this->f_title</a>";
- $this->f_album_link = "<a href=\"" . conf('web_path') . "/album.php?action=show&amp;album_id=" . $this->album . "\">$this->f_album</a>";
- $this->f_artist_link = "<a href=\"" . conf('web_path') . "/artist.php?action=show&amp;artist_id=" . $this->artist . "\">$this->f_artist</a>";
+ $this->f_album_link = "<a href=\"" . conf('web_path') . "/albums.php?action=show&amp;album=" . $this->album . "\">$this->f_album</a>";
+ $this->f_artist_link = "<a href=\"" . conf('web_path') . "/artists.php?action=show&amp;artist=" . $this->artist . "\">$this->f_artist</a>";
// Format the Bitrate
$this->f_bitrate = intval($this->bitrate/1000) . "-" . strtoupper($this->mode);