Bug 20323: Fix batch patron modification tool
[koha.git] / tools / modborrowers.pl
index 7e51a5a..586ae53 100755 (executable)
@@ -339,8 +339,9 @@ if ( $op eq 'do' ) {
     for my $borrowernumber ( @borrowernumbers ) {
         my $patron = Koha::Patrons->find( $borrowernumber );
         if ( $patron ) {
+            my $category_description = $patron->category->description;
             $patron = $patron->unblessed;
-            $patron->{category_description} = $patron->category->description;
+            $patron->{category_description} = $category_description;
             $patron->{patron_attributes} = C4::Members::Attributes::GetBorrowerAttributes( $patron->{borrowernumber} );
             $max_nb_attr = scalar( @{ $patron->{patron_attributes} } )
                 if scalar( @{ $patron->{patron_attributes} } ) > $max_nb_attr;