Bug 31028: Add catalog concern management page to staff
[koha-ffzg.git] / members / apikeys.pl
index a235697..5f1cd27 100755 (executable)
@@ -84,7 +84,7 @@ if ($op) {
 
         $template->param(
             fresh_api_key => $api_key,
-            api_keys      => scalar Koha::ApiKeys->search({ patron_id => $patron_id }),
+            api_keys      => Koha::ApiKeys->search({ patron_id => $patron_id }),
         );
     }
 
@@ -121,10 +121,8 @@ if ($op) {
     }
 }
 
-my @api_keys = Koha::ApiKeys->search({ patron_id => $patron_id });
-
 $template->param(
-    api_keys   => \@api_keys,
+    api_keys   => Koha::ApiKeys->search({ patron_id => $patron_id }),
     csrf_token => Koha::Token->new->generate_csrf({ session_id => scalar $cgi->cookie('CGISESSID') }),
     patron     => $patron
 );