- Issue created by @gr4phic3r
- πΊπΈUnited States damienmckenna NH, USA
Agreed! It should not be too hard to adjust the output..
- πΊπΈUnited States damienmckenna NH, USA
I wonder would something like this work?
Also, this is a bug as the module doesn't output correct JSON per the specifications.
- πΊπΈUnited States damienmckenna NH, USA
elseif (is_int($value)) {
should be
elseif (is_numeric($value)) {
- πΊπΈUnited States Farnoosh
array_walk_recursive() only passes two arguments ($value, $key) to the callback, so I updated the callback to only expect two arguments
- Merge request !95Convert integers and booleans in strings to raw values. β (Open) created by damienmckenna
- πΊπΈUnited States damienmckenna NH, USA
I created the merge request with help from jedihe!
This will need some test coverage to make sure it works as expected and doesn't break in the future.