Bug 19921: Fix update child when only one adult patron category exist
[koha-ffzg.git] / members / member-flags.pl
index 27e020c..ba01d3b 100755 (executable)
@@ -181,7 +181,7 @@ if ($input->param('newflags')) {
     if ( $category_type eq 'C') {
         my $patron_categories = Koha::Patron::Categories->search_limited({ category_type => 'A' }, {order_by => ['categorycode']});
         $template->param( 'CATCODE_MULTI' => 1) if $patron_categories->count > 1;
-        $template->param( 'catcode' => $patron_categories->next )  if $patron_categories->count == 1;
+        $template->param( 'catcode' => $patron_categories->next->categorycode )  if $patron_categories->count == 1;
     }
 
 $template->param( adultborrower => 1 ) if ( $category_type =~ /^(A|I)$/ );