Lines 1760-1766
sub desensitize {
Link Here
|
1760 |
my $patron_categories = $server->{account}->{inhouse_patron_categories} // q{}; |
1760 |
my $patron_categories = $server->{account}->{inhouse_patron_categories} // q{}; |
1761 |
my $item_types = $server->{account}->{inhouse_item_types} // q{}; |
1761 |
my $item_types = $server->{account}->{inhouse_item_types} // q{}; |
1762 |
|
1762 |
|
1763 |
# If no patron categorie or item typess are set for never desensitize, no need to do anything |
1763 |
# If no patron categories or item types are set for never desensitize, no need to do anything |
1764 |
return $desensitize unless $patron_categories || $item_types; |
1764 |
return $desensitize unless $patron_categories || $item_types; |
1765 |
|
1765 |
|
1766 |
my $patron_category = $patron->ptype(); |
1766 |
my $patron_category = $patron->ptype(); |
1767 |
- |
|
|