You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A xml of <fields> <field datatype="text" name="L101"/> <field datatype="text" name="L101_1"/> <field datatype="text" name="P102"/> <field datatype="text" name="P102_1"> <source></source> <param></param> </field> <field datatype="text" name="P103"></field> </fields>
returns only an array of two fields with name P102_1 and P103 when using findTagsByName(xml, 'field') or findTagsByPath(xml, 'field').
It should return an array of five elements, as self closing tag is a valid xml syntax.
The text was updated successfully, but these errors were encountered:
A xml of
<fields> <field datatype="text" name="L101"/> <field datatype="text" name="L101_1"/> <field datatype="text" name="P102"/> <field datatype="text" name="P102_1"> <source></source> <param></param> </field> <field datatype="text" name="P103"></field> </fields>
returns only an array of two fields with name P102_1 and P103 when using
findTagsByName(xml, 'field')
orfindTagsByPath(xml, 'field')
.It should return an array of five elements, as self closing tag is a valid xml syntax.
The text was updated successfully, but these errors were encountered: