View | Details | Raw Unified | Return to bug 35264
Collapse All | Expand All

(-)a/Koha/Database/Columns.pm (+1 lines)
Lines 180-185 sub columns { Link Here
180
            "privacy_guarantor_fines"     => __("Show fines to guarantor"),
180
            "privacy_guarantor_fines"     => __("Show fines to guarantor"),
181
            "privacy"                     => __("Privacy settings"),
181
            "privacy"                     => __("Privacy settings"),
182
            "pronouns"                    => __("Pronouns"),
182
            "pronouns"                    => __("Pronouns"),
183
            "protected"                   => __("Protected"),
183
            "relationship"                => __("Relationship"),
184
            "relationship"                => __("Relationship"),
184
            "secret"                      => __("Secret (2FA)"),
185
            "secret"                      => __("Secret (2FA)"),
185
            "sex"                         => __("Gender"),
186
            "sex"                         => __("Gender"),
(-)a/Koha/Patrons/Import.pm (-1 / +2 lines)
Lines 146-151 sub import_patrons { Link Here
146
        $borrower{cardnumber} = undef if $borrower{cardnumber} eq "";
146
        $borrower{cardnumber} = undef if $borrower{cardnumber} eq "";
147
        $borrower{auth_method} = undef if $borrower{auth_method} eq "";
147
        $borrower{auth_method} = undef if $borrower{auth_method} eq "";
148
148
149
        $borrower{protected} = 0 unless $borrower{protected};
150
149
        # Check if borrower category code exists and if it matches to a known category. Pushing error to missing_criticals otherwise.
151
        # Check if borrower category code exists and if it matches to a known category. Pushing error to missing_criticals otherwise.
150
        $self->check_borrower_category($borrower{categorycode}, $borrowerline, $line_number, \@missing_criticals);
152
        $self->check_borrower_category($borrower{categorycode}, $borrowerline, $line_number, \@missing_criticals);
151
153
152
- 

Return to bug 35264