@@ -, +, @@ Koha::Template::Plugin::Categories --- Koha/Template/Plugin/Categories.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- a/Koha/Template/Plugin/Categories.pm +++ a/Koha/Template/Plugin/Categories.pm @@ -25,12 +25,12 @@ use Koha::Patron::Categories; sub all { my ( $self, $params ) = @_; - return Koha::Patron::Categories->search($params); + return Koha::Patron::Categories->search($params, { order_by => [ 'description' ] } ); } sub limited { my ( $self, $params ) = @_; - return Koha::Patron::Categories->search_with_library_limits($params); + return Koha::Patron::Categories->search_with_library_limits($params, { order_by => [ 'description' ] } ); } sub GetName { --