peachpie icon indicating copy to clipboard operation
peachpie copied to clipboard

C14N() on a node returns the root-node

Open kripper opened this issue 3 years ago • 0 comments

Test case: https://onlinephp.io/c/f4d65

Given the following XML example, running C14N() on tag "NODE" returns the whole document (BUG). c14N() on tag "NODE" should only return the content of tag "NODE".

<?xml version="1.0"?>
<TEST>
  <NODE>
    here
  </NODE>
</TEST>

kripper avatar Sep 07 '22 01:09 kripper