From 5869da3fe58876644364941fa7216caee09adbf5 Mon Sep 17 00:00:00 2001 From: Karl 'vollmerk' Vollmer Date: Tue, 20 Nov 2007 06:23:05 +0000 Subject: little more work on the xml api, artists and albums now works --- lib/class/album.class.php | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'lib/class/album.class.php') 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 = "id) . "\" title=\"" . scrub_out($this->name) . "\">" . $this->f_name; + $this->f_name_link = "id) . "\" title=\"" . scrub_out($this->name) . "\">" . $this->f_name; // If we've got a disk append it if ($this->disk) { $this->f_name_link .= " disk. "\">[" . _('Disk') . " " . $this->disk . "]"; } - $this->f_name_link .=""; + $this->f_name_link .=""; $this->f_link = $this->f_name_link; $this->f_title = $name; -- cgit