pluginsGLPI / fields

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

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

Closed stonebuzz closed 3 weeks ago

stonebuzz commented 4 weeks 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 4 weeks ago

Thank you, for me it works now!