developer.jelix.org is not used any more and exists only for
history. Post new tickets on the Github account.
developer.jelix.org n'est plus utilisée, et existe uniquement pour son historique. Postez les nouveaux tickets sur le compte github.
developer.jelix.org n'est plus utilisée, et existe uniquement pour son historique. Postez les nouveaux tickets sur le compte github.
Opened 14 years ago
Closed 14 years ago
#192 closed bug (fixed)
XMLRPC et type "struct"
Reported by: | giviz | Owned by: | laurentj |
---|---|---|---|
Priority: | normal | Milestone: | Jelix 1.0beta3 |
Component: | jelix:utils | Version: | 1.0 beta2 |
Severity: | normal | Keywords: | xmlrpc |
Cc: | Blocked By: | ||
Blocking: | Documentation needed: | ||
Hosting Provider: | Php version: |
Description (last modified by laurentj)
Bug au niveau de l'analyse de ce type de données dans le fichier jXmlRpc.class.php ligne 160.
Voici un code de correction (merci à Laurent pour son aide !), je n'ai pas le temps de faire un patch là désolé :
$value=array(); if(isset($children[0]->member)){ foreach($children[0]->member as $val){ if(isset($val->name) && isset($val->value)){ $value[(string)$val->name] = self::_decodeValue($val->value); } } }
Change History (2)
comment:1 Changed 14 years ago by laurentj
- Component changed from jelix:core response to jelix:utils
- Description modified (diff)
- Keywords xmlrpc added
- Milestone set to Jelix 1.0beta3
- Status changed from new to assigned
comment:2 Changed 14 years ago by laurentj
- Resolution set to fixed
- Status changed from assigned to closed
Note: See
TracTickets for help on using
tickets.
patch inclus dans le trunk. Merci :-)