Lines 262-268
sub _get_sort_bin {
Link Here
|
262 |
# Get the mapping and split on newlines |
262 |
# Get the mapping and split on newlines |
263 |
my $raw_map = C4::Context->preference('SIP2SortBinMapping'); |
263 |
my $raw_map = C4::Context->preference('SIP2SortBinMapping'); |
264 |
return unless $raw_map; |
264 |
return unless $raw_map; |
265 |
@lines = split /[\r\n]+/, $raw_map; |
265 |
@lines = split /\R/, $raw_map; |
266 |
} |
266 |
} |
267 |
|
267 |
|
268 |
# Iterate over the mapping. The first hit wins. |
268 |
# Iterate over the mapping. The first hit wins. |
269 |
- |
|
|