@@ -, +, @@ in 1 - In KTD set 'Juvenile' category to have some messaging preferences 2 - Find a patron, say Edna Acosta, and 'Add guarantee' 3 - In new form preferences are blank, cancel 4 - Apply patch, restart all 5 - Go to Edna, click 'Add guarantee' 6 - Preferences are populated! 7 - Cancel 8 - Go to 'Patrons' module 9 - Click "+ New patron" --- members/memberentry.pl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) --- a/members/memberentry.pl +++ a/members/memberentry.pl @@ -680,13 +680,14 @@ foreach my $category_type (qw(C A S P I X)) { my @categoryloop; while ( my $patron_category = $patron_categories->next ) { + $categorycode = $patron_category->categorycode unless defined($categorycode); #If none passed in, select the first push @categoryloop, { 'categorycode' => $patron_category->categorycode, 'categoryname' => $patron_category->description, 'effective_min_password_length' => $patron_category->effective_min_password_length, 'effective_require_strong_password' => $patron_category->effective_require_strong_password, 'categorycodeselected' => - ( defined($categorycode) && $patron_category->categorycode eq $categorycode ), + ( $patron_category->categorycode eq $categorycode ), }; } my %typehash; --