Feature Request / Question
I was just wondering if there's a good reason to reverse the sort order of the fields shown in the detail and comparison views.
In file src\Action\ViewDetailAction.php, line 40, krsort is used (instead of ksort) which seems a little odd when first viewing the detail page and looking for a specific field.
In src\Action\CompareAction.php after line 42 ksort($diff); could also be added to sort the entries (which don't have any specific order on that page).
Feature Request / Question
I was just wondering if there's a good reason to reverse the sort order of the fields shown in the detail and comparison views.
In file
src\Action\ViewDetailAction.php, line 40,krsortis used (instead ofksort) which seems a little odd when first viewing the detail page and looking for a specific field.In
src\Action\CompareAction.phpafter line 42ksort($diff);could also be added to sort the entries (which don't have any specific order on that page).