diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2009-04-13 15:45:00 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2009-04-13 15:45:00 +0000 |
commit | d3728b89e060bbdc32f1447d6ea79b19dd7746e8 (patch) | |
tree | 21b7864f0b852e8bb48633a5560651dfe7870cce /lib/class/song.class.php | |
parent | 45f4f58b1eaaeee61e92086087c7bb203eff896c (diff) | |
download | ampache-d3728b89e060bbdc32f1447d6ea79b19dd7746e8.tar.gz ampache-d3728b89e060bbdc32f1447d6ea79b19dd7746e8.tar.bz2 ampache-d3728b89e060bbdc32f1447d6ea79b19dd7746e8.zip |
tweaked fix for rss feed, makes it a little cleaner, fix custom port issue add debug event on unreadable, but still existing files
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 a8c08fdc..8690a1fc 100644 --- a/lib/class/song.class.php +++ b/lib/class/song.class.php @@ -670,8 +670,8 @@ class Song extends database_object implements media { $this->f_title = truncate_with_ellipsis($this->title,Config::get('ellipse_threshold_title')); // Create Links for the different objects - $this->link = Config::get('web_path') . "/song.php?action=show_song&song_id=" . $this->id; - $this->f_link = "<a href=\"" . $this->link . "\" title=\"" . scrub_out($this->title) . "\"> " . scrub_out($this->f_title) . "</a>"; + $this->link = Config::get('web_path') . "/song.php?action=show_song&song_id=" . $this->id; + $this->f_link = "<a href=\"" . scrub_out($this->link) . "\" title=\"" . scrub_out($this->title) . "\"> " . scrub_out($this->f_title) . "</a>"; $this->f_album_link = "<a href=\"" . Config::get('web_path') . "/albums.php?action=show&album=" . $this->album . "\" title=\"" . scrub_out($this->f_album_full) . "\"> " . scrub_out($this->f_album) . "</a>"; $this->f_artist_link = "<a href=\"" . Config::get('web_path') . "/artists.php?action=show&artist=" . $this->artist . "\" title=\"" . scrub_out($this->f_artist_full) . "\"> " . scrub_out($this->f_artist) . "</a>"; |