diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-11-30 17:18:13 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-11-30 17:18:13 +0000 |
commit | 0af24517dc17d953d5cc8fcd6f7f848d27f96163 (patch) | |
tree | 03fa0679582c0970392c2d176d6a72c06a832c89 /lib/class/song.class.php | |
parent | 1938861afbcd29110341780e099cf9effe4c2b9a (diff) | |
download | ampache-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.php | 4 |
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&song_id=" . $this->id . "\">$this->f_title</a>"; - $this->f_album_link = "<a href=\"" . conf('web_path') . "/album.php?action=show&album_id=" . $this->album . "\">$this->f_album</a>"; - $this->f_artist_link = "<a href=\"" . conf('web_path') . "/artist.php?action=show&artist_id=" . $this->artist . "\">$this->f_artist</a>"; + $this->f_album_link = "<a href=\"" . conf('web_path') . "/albums.php?action=show&album=" . $this->album . "\">$this->f_album</a>"; + $this->f_artist_link = "<a href=\"" . conf('web_path') . "/artists.php?action=show&artist=" . $this->artist . "\">$this->f_artist</a>"; // Format the Bitrate $this->f_bitrate = intval($this->bitrate/1000) . "-" . strtoupper($this->mode); |