mirror of
https://github.com/Yetangitu/ampache
synced 2025-10-03 09:49:30 +02:00
removed random space on lastfm prefs, started work on managing shout and flagged items, cleaned up shoutbox css a bit
This commit is contained in:
parent
8442e4c7db
commit
c56aeb1b70
14 changed files with 134 additions and 94 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue