Lines 806-813
sub prepare_adv_search_types {
Link Here
|
806 |
my @itypesloop; |
806 |
my @itypesloop; |
807 |
foreach my $thisitemtype ( |
807 |
foreach my $thisitemtype ( |
808 |
sort { |
808 |
sort { |
809 |
$itemtypes->{$a}->{'description'} |
809 |
$itemtypes->{$a}->{'translated_description'} |
810 |
cmp $itemtypes->{$b}->{'description'} |
810 |
cmp $itemtypes->{$b}->{'translated_description'} |
811 |
} keys %$itemtypes |
811 |
} keys %$itemtypes |
812 |
) |
812 |
) |
813 |
{ |
813 |
{ |
Lines 815-821
sub prepare_adv_search_types {
Link Here
|
815 |
number => $cnt++, |
815 |
number => $cnt++, |
816 |
ccl => "$itype_or_itemtype,phr", |
816 |
ccl => "$itype_or_itemtype,phr", |
817 |
code => $thisitemtype, |
817 |
code => $thisitemtype, |
818 |
description => $itemtypes->{$thisitemtype}->{'description'}, |
818 |
description => $itemtypes->{$thisitemtype}->{'translated_description'}, |
819 |
imageurl => getitemtypeimagelocation( |
819 |
imageurl => getitemtypeimagelocation( |
820 |
'intranet', $itemtypes->{$thisitemtype}->{'imageurl'} |
820 |
'intranet', $itemtypes->{$thisitemtype}->{'imageurl'} |
821 |
), |
821 |
), |
822 |
- |
|
|