We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CodeIgniter4/system/Format/XMLFormatter.php
Line 107 in f7dfb40
Hot Fix if (!is_numeric($key)) { $output->addChild("$key", htmlspecialchars("$value")); } else { $output->addChild("item{$key}", htmlspecialchars("$value")); }
before <ORDER_QTY><0>1</0></ORDER_QTY>
after <ORDER_QTY>< item0>1< /item0 ></ORDER_QTY>
The text was updated successfully, but these errors were encountered:
Good catch! I suppose not many people use XML format anymore because otherwise, this problem would come sooner.
Sorry, something went wrong.
No branches or pull requests
CodeIgniter4/system/Format/XMLFormatter.php
Line 107 in f7dfb40
Hot Fix
if (!is_numeric($key)) {
$output->addChild("$key", htmlspecialchars("$value"));
} else {
$output->addChild("item{$key}", htmlspecialchars("$value"));
}
before
<ORDER_QTY><0>1</0></ORDER_QTY>
after
<ORDER_QTY>< item0>1< /item0 ></ORDER_QTY>
The text was updated successfully, but these errors were encountered: