From 548899d962d5d731b2de6f8a0c9ca82e9564c5b9 Mon Sep 17 00:00:00 2001 From: Galen Charlton Date: Wed, 7 Apr 2010 10:25:39 -0400 Subject: [PATCH] fix POD for GetAllIssues Please remember to update the POD if you change a core function. Signed-off-by: Galen Charlton --- C4/Members.pm | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/C4/Members.pm b/C4/Members.pm index 2395b720ee..dfa41e5978 100644 --- a/C4/Members.pm +++ b/C4/Members.pm @@ -1015,7 +1015,7 @@ sub GetPendingIssues { =head2 GetAllIssues - ($count, $issues) = &GetAllIssues($borrowernumber, $sortkey, $limit); + $issues = &GetAllIssues($borrowernumber, $sortkey, $limit); Looks up what the patron with the given borrowernumber has borrowed, and sorts the results. @@ -1026,11 +1026,9 @@ C, or C table in the Koha database. C<$limit> is the maximum number of results to return. -C<&GetAllIssues> returns a two-element array. C<$issues> is a -reference-to-array, where each element is a reference-to-hash; the -keys are the fields from the C, C, C, and -C tables of the Koha database. C<$count> is the number of -elements in C<$issues> +C<&GetAllIssues> an arrayref, C<$issues>, of hashrefs, the keys of which +are the fields from the C, C, C, and +C tables of the Koha database. =cut -- 2.39.5