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

(-)a/opac/opac-memberentry.pl (-3 / +3 lines)
Lines 254-261 sub GetHiddenFields { Link Here
254
    my ( $mandatory, $action ) = @_;
254
    my ( $mandatory, $action ) = @_;
255
    my %hidden_fields;
255
    my %hidden_fields;
256
256
257
    my $BorrowerUnwantedField =
257
    my $BorrowerUnwantedField = $action eq 'modification' ?
258
      C4::Context->preference( "PatronSelf" . ucfirst($action) . "BorrowerUnwantedField" );
258
      C4::Context->preference( "PatronSelfModificationBorrowerUnwantedField" ) :
259
      C4::Context->preference( "PatronSelfRegistrationBorrowerUnwantedField" );
259
260
260
    my @fields = split( /\|/, $BorrowerUnwantedField );
261
    my @fields = split( /\|/, $BorrowerUnwantedField );
261
    foreach (@fields) {
262
    foreach (@fields) {
262
- 

Return to bug 14658