From 0bfcb079a1a789cec9f2ad04f50d85fbbff9a529 Mon Sep 17 00:00:00 2001 From: Magnus Enger Date: Tue, 4 Nov 2014 14:03:16 +0100 Subject: [PATCH] Bug 13194: Fix typo in SetMessagingPreferencesFromDefaults POD The example usage for C4::Members::Messaging::SetMessagingPreferencesFromDefaults calls the subroutine SetMessagingPreferenceFromDefaults, not SetMessagingPreferencesFromDefaults (missing the 's' at the end of 'Preferences'). To test: - Apply the patch - Check that the POD now refers to the actual name of the subroutine (perldoc C4::Members::Messaging) http://bugs.koha-community.org/show_bug.cgi?id=13194 Adding 's' is the correct doc change to make it match with the function definition. Comfirmable with less. perldoc C4::Members::Messaging proves the doc is still nice. Signed-off-by: Mark Tompsett Signed-off-by: Jonathan Druart Signed-off-by: Tomas Cohen Arazi --- C4/Members/Messaging.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/C4/Members/Messaging.pm b/C4/Members/Messaging.pm index 6be8347ee2..f28c3dc506 100644 --- a/C4/Members/Messaging.pm +++ b/C4/Members/Messaging.pm @@ -223,7 +223,7 @@ END_SQL =head2 SetMessagingPreferencesFromDefaults - C4::Members::Messaging::SetMessagingPreferenceFromDefaults( { borrowernumber => $borrower->{'borrowernumber'} + C4::Members::Messaging::SetMessagingPreferencesFromDefaults( { borrowernumber => $borrower->{'borrowernumber'} categorycode => 'CPL' } ); Given a borrowernumber and a patron category code (from the C and C keys -- 2.39.5