Skip to content

Issue 3302308: Add SORT_NUMERIC flag when sorting rows.

Giles Birch requested to merge issue/tablefield-3302308:7.x-3.x into 7.x-3.x

In some cases, tables with more than 10 rows are displayed in the wrong order. ksort() is applied without a flag, causing "row_10" to be sorted between "row_1" and "row_2". Solution, add a SORT_NUMERIC flag.

Merge request reports