diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-12-25 17:32:50 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-12-25 17:32:50 +0000 |
commit | c56aeb1b7003ed10da98a8bbc8305a5cb90357a6 (patch) | |
tree | 476ed3baf1f14923c7034a340c172f4d38682c26 /lib/class/shoutbox.class.php | |
parent | 8442e4c7dbb9bad0386489418567c667e7b5ed91 (diff) | |
download | ampache-c56aeb1b7003ed10da98a8bbc8305a5cb90357a6.tar.gz ampache-c56aeb1b7003ed10da98a8bbc8305a5cb90357a6.tar.bz2 ampache-c56aeb1b7003ed10da98a8bbc8305a5cb90357a6.zip |
removed random space on lastfm prefs, started work on managing shout and flagged items, cleaned up shoutbox css a bit
Diffstat (limited to 'lib/class/shoutbox.class.php')
-rw-r--r-- | lib/class/shoutbox.class.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/class/shoutbox.class.php b/lib/class/shoutbox.class.php index 3cea772b..98d14548 100644 --- a/lib/class/shoutbox.class.php +++ b/lib/class/shoutbox.class.php @@ -132,14 +132,14 @@ class shoutBox { switch ($this->object_type) { case 'album': - $image_string = "<img height=\"75\" width=\"75\" src=\"" . Config::get('web_path') . "/image.php?id=" . $this->object_id . "&thumb=1\" />"; + $image_string = "<img class=\"shoutboximage\" height=\"75\" width=\"75\" src=\"" . Config::get('web_path') . "/image.php?id=" . $this->object_id . "&thumb=1\" />"; break; case 'artist': break; case 'song': $song = new Song($this->object_id); - $image_string = "<img height=\"75\" width=\"75\" src=\"" . Config::get('web_path') . "/image.php?id=" . $song->album . "&thumb=1\" />"; + $image_string = "<img class=\"shoutboximage\" height=\"75\" width=\"75\" src=\"" . Config::get('web_path') . "/image.php?id=" . $song->album . "&thumb=1\" />"; break; default: // Rien a faire |