refs #8480 Hide inactive items
This commit is contained in:
parent
35efe67c63
commit
5b968b6e46
|
@ -1,4 +1,4 @@
|
|||
hedera-web (25.4.3) stable; urgency=low
|
||||
hedera-web (25.4.4) stable; urgency=low
|
||||
|
||||
* Initial Release.
|
||||
|
||||
|
|
|
@ -18,8 +18,8 @@
|
|||
LEFT JOIN image im
|
||||
ON im.collectionFk = 'catalog'
|
||||
AND im.name = i.image
|
||||
WHERE i.longName LIKE CONCAT('%', #search, '%')
|
||||
OR i.id = #search
|
||||
WHERE i.isActive
|
||||
AND (i.longName LIKE CONCAT('%', #search, '%') OR i.id = #search)
|
||||
ORDER BY i.longName LIMIT 50
|
||||
</db-model>
|
||||
<custom>
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "hedera-web",
|
||||
"version": "25.4.3",
|
||||
"version": "25.4.4",
|
||||
"description": "Verdnatura web page",
|
||||
"license": "GPL-3.0",
|
||||
"repository": {
|
||||
|
|
Loading…
Reference in New Issue