@@ -, +, @@ columns_settings.tt 1) Head over to /cgi-bin/koha/admin/columns_settings.pl 2) Open any collapsed module settings, for example 3) Reload the page. Check the order of the same elements again. 4) Apply the patch. 5) Repeat steps 1-3 again and ensure that the order of pages --- koha-tmpl/intranet-tmpl/prog/en/modules/admin/columns_settings.tt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/columns_settings.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/columns_settings.tt @@ -6,7 +6,7 @@ [% BLOCK pagelist %] [% IF module.keys and module.keys.size > 0 %] Jump to: - [% FOR pagename IN module.keys %] + [% FOR pagename IN module.keys.sort %] [% pagename | html %] [% UNLESS loop.last %] | [% END %] [% END %] @@ -18,7 +18,7 @@ [% SET panel_id = panel_id + 1 %] [% IF module.keys and module.keys.size > 0 %] - [% FOR pagename IN module.keys %] + [% FOR pagename IN module.keys.sort %]

Page: [% pagename | html %]

[% SET tables = module %] [% IF tables.$pagename.keys and tables.$pagename.keys.size > 0 %] --