mirror of
https://github.com/Yetangitu/ampache
synced 2025-10-06 03:49:56 +02:00
Add browse filter and light sidebar options
Add overload to force library item art display
This commit is contained in:
parent
5f3d59ed74
commit
0630676eb6
26 changed files with 163 additions and 136 deletions
|
@ -780,9 +780,9 @@ class Tag extends database_object implements library_item
|
|||
return null;
|
||||
}
|
||||
|
||||
public function display_art($thumb = 2)
|
||||
public function display_art($thumb = 2, $force = false)
|
||||
{
|
||||
if (Art::has_db($this->id, 'tag')) {
|
||||
if (Art::has_db($this->id, 'tag') || $force) {
|
||||
Art::display('tag', $this->id, $this->get_fullname(), $thumb, $this->link);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue