1
0
Fork 0
mirror of https://github.com/Yetangitu/ampache synced 2025-10-03 09:49:30 +02:00

Fixed missing space in get_icon method when using sprites

This commit is contained in:
Maniac 2015-08-13 08:51:03 +02:00
parent df89cb845d
commit cfe1b1371e

View file

@ -220,7 +220,7 @@ END;
$hover_url = self::_find_icon($hover_name);
}
if ($bUseSprite) {
$tag = '<span class="sprite sprite-icon_'.$name.'"';
$tag = '<span class="sprite sprite-icon_'.$name.'" ';
} else {
$tag = '<img src="' . $icon_url . '" ';
}