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

(-)a/members/memberentry.pl (+1 lines)
Lines 215-220 if ( $op eq 'insert' || $op eq 'modify' || $op eq 'save' || $op eq 'duplicate' ) Link Here
215
# remove keys from %newdata that is not part of patron's attributes
215
# remove keys from %newdata that is not part of patron's attributes
216
{
216
{
217
    my @keys_to_delete = (
217
    my @keys_to_delete = (
218
        qr/^flags$/,
218
        qr/^BorrowerMandatoryField$/,
219
        qr/^BorrowerMandatoryField$/,
219
        qr/^category_type$/,
220
        qr/^category_type$/,
220
        qr/^check_member$/,
221
        qr/^check_member$/,
(-)a/opac/opac-memberentry.pl (-1 / +1 lines)
Lines 522-527 sub ParseCgiForBorrower { Link Here
522
    # Replace checkbox 'agreed' by datetime in gdpr_proc_consent
522
    # Replace checkbox 'agreed' by datetime in gdpr_proc_consent
523
    $borrower{gdpr_proc_consent} = dt_from_string if  $borrower{gdpr_proc_consent} && $borrower{gdpr_proc_consent} eq 'agreed';
523
    $borrower{gdpr_proc_consent} = dt_from_string if  $borrower{gdpr_proc_consent} && $borrower{gdpr_proc_consent} eq 'agreed';
524
524
525
    delete $borrower{flags};
525
    return %borrower;
526
    return %borrower;
526
}
527
}
527
528
528
- 

Return to bug 28929