|
Lines 241-247
if ($op eq "action") {
Link Here
|
| 241 |
} |
241 |
} |
| 242 |
else { |
242 |
else { |
| 243 |
my $modified_holds_priority = 0; |
243 |
my $modified_holds_priority = 0; |
| 244 |
if (defined $exclude_from_local_holds_priority) { |
244 |
if ( defined $exclude_from_local_holds_priority && $exclude_from_local_holds_priority ne "" ) { |
| 245 |
if(!defined $item->exclude_from_local_holds_priority || $item->exclude_from_local_holds_priority != $exclude_from_local_holds_priority) { |
245 |
if(!defined $item->exclude_from_local_holds_priority || $item->exclude_from_local_holds_priority != $exclude_from_local_holds_priority) { |
| 246 |
$item->exclude_from_local_holds_priority($exclude_from_local_holds_priority)->store; |
246 |
$item->exclude_from_local_holds_priority($exclude_from_local_holds_priority)->store; |
| 247 |
$modified_holds_priority = 1; |
247 |
$modified_holds_priority = 1; |
| 248 |
- |
|
|