Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow columns that have value of 0 to be present
Since array filter considers 0= false, and '0' = false, if you have a column with values 0 and 1, you can't sort that column, as it will be filtered out. using the strlen filter, you ensure that values like null,empty and false are removed, but you keep values that would be boolean false in php, but they shouldn't.
- Loading branch information