Bug 4263: Fix subfield ordering broken by earlier patch
authorColin Campbell <colin.campbell@ptfs-europe.com>
Thu, 10 Feb 2011 20:13:12 +0000 (15:13 -0500)
committerChris Nighswonger <chris.nighswonger@gmail.com>
Mon, 14 Feb 2011 02:38:54 +0000 (21:38 -0500)
Restores alpha sorting of item subfields in add/edit screen

Signed-off-by: Nicole Engard <nengard@bywatersolutions.com>
Signed-off-by: Chris Cormack <chrisc@catalyst.net.nz>
(cherry picked from commit ea2ace41a44cba0485be9e7cbece5e4782d2ad38)

Signed-off-by: Chris Nighswonger <chris.nighswonger@gmail.com>
cataloguing/additem.pl

index 791907f..c5dd7d9 100755 (executable)
@@ -612,6 +612,7 @@ foreach my $tag ( keys %{$tagslib}){
         } 
   }
 }
+@loop_data = sort {$a->{subfield} cmp $b->{subfield} } @loop_data;
 
 # what's the next op ? it's what we are not in : an add if we're editing, otherwise, and edit.
 $template->param( title => $record->title() ) if ($record ne "-1");