You are not logged in.
Bonjour
J'arrive à effectuer des updates de champs supplémentaire par curl en [GLPI 9.5.11/Fields 1.12.5] mais plus en [GLPI 10.0.7/Fields 1.20.4]
curl --insecure -v --compressed -X PUT -v -H 'Content-Type: application/json' -H 'App-Token: ***' -H 'Session-Token: ***' -d '{
"input": {
"id": 525,
"listefield": "AdminCNT;Admins du domaine;GR-BO-EXPL;MigrationACC"
}}' http://******/apirest.php/Computer/4138/PluginFieldsComputerchampssupplmentaire
le curl me renvoit bien un HTTP/200, toutefois j'ai cet erreur dans php-errors.log.
[2023-07-13 17:22:32] glpiphplog.CRITICAL: *** Uncaught Exception TypeError: property_exists(): Argument #1 ($object_or_class) must be of type object|string, array given in /var/www/glpi-10.0.7/src/Api/API.php at line 1984
Backtrace :
src/Api/API.php:1984 property_exists()
src/Api/APIRest.php:326 Glpi\Api\API->updateItems()
apirest.php:57 Glpi\Api\APIRest->call()
public/index.php:73 require()
je n'arrive pas trop à comprendre la cause du pbm
Merci d'avance pour votre aide
Cordialement
JCC
Offline
En premiere analyse , il se pourrait que ce soit un bug dans 'src/Api/API.php'
Lgn 1953: if (is_array($input)) { #on teste si input est un array
...
Lgn 1957: foreach ($input as $object) { # on boucle
...
Lgn 1986: if (!property_exists($input, $fk_parent)) { # et la c'est le drame ..!
Le type du premier argement est Array , mais property_exists veut un objet ou string, ce qui ne correspond pas à un array
D'ou le message 'Uncaught Exception TypeError: property_exists(): Argument #1 ($object_or_class) must be of type object|string, array given in /var/www/glpi-10.0.7/src/Api/API.php at line 1983'
Offline
Pouvez-vous signaler le bogue sur le GLPI GitHub avec des étapes pour recréer le problème et le problème potentiel dans le code que vous avez trouvé ?
GLPI Collaborator and Plugin Developer.
My non-English comments are automated translations. Sorry for any confusion that causes.
Mes commentaires non anglais sont des traductions automatiques. Désolé pour toute confusion qui cause.
Mis comentarios que no están en inglés son traducciones automáticas. Perdón por cualquier confusión que cause.
Offline
Offline
Merci de spécifier ce bug comme résolu
Offline