Patch for bug 271048: Remove confusion when sorting classifications by modifying GetSelectableClassifications in order to always return a sorted list; patch by Albert Ting <altlst@sonic.net>, r=justdave, a=justdave.
git-svn-id: svn://10.0.0.236/trunk@166261 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
@@ -664,7 +664,7 @@ sub GetSelectableProductHash {
|
||||
sub GetSelectableClassifications {
|
||||
my @selectable_classes = ();
|
||||
|
||||
foreach my $c (keys %::classdesc) {
|
||||
foreach my $c (sort keys %::classdesc) {
|
||||
if ( scalar(GetSelectableProducts(0,$c)) > 0) {
|
||||
push(@selectable_classes,$c);
|
||||
}
|
||||
|
||||
@@ -280,7 +280,7 @@ $vars->{'product'} = \@products;
|
||||
if (Param('useclassification')) {
|
||||
my @classifications = ();
|
||||
|
||||
foreach my $c (sort(GetSelectableClassifications())) {
|
||||
foreach my $c (GetSelectableClassifications()) {
|
||||
# Create hash to hold attributes for each classification.
|
||||
my %classification = (
|
||||
'name' => $c,
|
||||
|
||||
Reference in New Issue
Block a user