|
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 |
- |
|
|