diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-11-20 06:23:05 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-11-20 06:23:05 +0000 |
commit | 5869da3fe58876644364941fa7216caee09adbf5 (patch) | |
tree | 66d981851a8e3d024ccd662c26cdad6612f7e6b0 /lib/class/album.class.php | |
parent | c1829308f4207eda5fbfff668ad0fcd6e1f16143 (diff) | |
download | ampache-5869da3fe58876644364941fa7216caee09adbf5.tar.gz ampache-5869da3fe58876644364941fa7216caee09adbf5.tar.bz2 ampache-5869da3fe58876644364941fa7216caee09adbf5.zip |
little more work on the xml api, artists and albums now works
Diffstat (limited to 'lib/class/album.class.php')
-rw-r--r-- | lib/class/album.class.php | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/lib/class/album.class.php b/lib/class/album.class.php index cd54eccd..601b1f9b 100644 --- a/lib/class/album.class.php +++ b/lib/class/album.class.php @@ -209,15 +209,14 @@ class Album { foreach ($data as $key=>$value) { $this->$key = $value; } /* Truncate the string if it's to long */ - $this->f_name = truncate_with_ellipsis($this->name,Config::get('ellipsis_threshold_album')); + $this->f_name = truncate_with_ellipsis($this->name,Config::get('ellipsis_threshold_album')); - // - $this->f_name_link = "<a href=\"$web_path/albums.php?action=show&album=" . scrub_out($this->id) . "\" title=\"" . scrub_out($this->name) . "\">" . $this->f_name; + $this->f_name_link = "<a href=\"$web_path/albums.php?action=show&album=" . scrub_out($this->id) . "\" title=\"" . scrub_out($this->name) . "\">" . $this->f_name; // If we've got a disk append it if ($this->disk) { $this->f_name_link .= " <span class=\"discnb disc" .$this->disk. "\">[" . _('Disk') . " " . $this->disk . "]</span>"; } - $this->f_name_link .="</a>"; + $this->f_name_link .="</a>"; $this->f_link = $this->f_name_link; $this->f_title = $name; |