@@ -, +, @@ inconsistently 'New authority' button lists auth types sorted by description. authority' button will list auth types sorted by their code. now list the available authority types sorted by description. --- authorities/detail.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/authorities/detail.pl +++ a/authorities/detail.pl @@ -188,7 +188,7 @@ my $authtypecode = $authobj ? $authobj->authtypecode : q{}; $tagslib = &GetTagsLabels(1,$authtypecode); # Build list of authtypes for showing them -my $authority_types = Koha::Authority::Types->search({}, { order_by => ['authtypecode']}); +my $authority_types = Koha::Authority::Types->search({}, { order_by => ['authtypetext']}); my $record=GetAuthority($authid); --