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

(-)a/opac/opac-memberentry.pl (-2 / +1 lines)
Lines 258-264 sub GetHiddenFields { Link Here
258
      C4::Context->preference( "PatronSelfModificationBorrowerUnwantedField" ) :
258
      C4::Context->preference( "PatronSelfModificationBorrowerUnwantedField" ) :
259
      C4::Context->preference( "PatronSelfRegistrationBorrowerUnwantedField" );
259
      C4::Context->preference( "PatronSelfRegistrationBorrowerUnwantedField" );
260
260
261
    my @fields = split( /\|/, $BorrowerUnwantedField );
261
    my @fields = split( /\|/, $BorrowerUnwantedField || q|| );
262
    foreach (@fields) {
262
    foreach (@fields) {
263
        next unless m/\w/o;
263
        next unless m/\w/o;
264
        #Don't hide mandatory fields
264
        #Don't hide mandatory fields
265
- 

Return to bug 14658