pluginsGLPI / fields

Additionals fields for GLPI
http://glpi-plugins.rtfd.io/en/latest/fields/index.html
GNU General Public License v2.0
90 stars 67 forks source link

Fix(Core): fix bulk update for dropdown used in more than one container #819

Closed stonebuzz closed 2 months ago

stonebuzz commented 2 months ago

In fields, a dropdown field can be reused in several containers

However, when several containers use this type of field, it is no longer possible to modify it using mass actions.

The format of the query before the change resulted in an IN clause which returned both containers (KO), now we have a LIKE clause (which returns a single container (OK)).

Mirkk commented 2 months ago

Thank you, for me it works now!