fix invoice sorting by package category, RT#31272
authorIvan Kohler <ivan@freeside.biz>
Thu, 4 Dec 2014 18:36:58 +0000 (10:36 -0800)
committerIvan Kohler <ivan@freeside.biz>
Thu, 4 Dec 2014 18:36:58 +0000 (10:36 -0800)
FS/FS/Template_Mixin.pm

index 0928ee5..5af5b27 100644 (file)
@@ -2153,9 +2153,9 @@ sub _items_sections {
         } else {
           $section->{'category'} = $sectionname;
           $section->{'description'} = &{ $escape }($sectionname);
-          if ( _pkg_category($_) ) {
-            $section->{'sort_weight'} = _pkg_category($_)->weight;
-            if ( _pkg_category($_)->condense ) {
+          if ( _pkg_category($sectionname) ) {
+            $section->{'sort_weight'} = _pkg_category($sectionname)->weight;
+            if ( _pkg_category($sectionname)->condense ) {
               $section = { %$section, $self->_condense_section($opt{format}) };
             }
           }