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