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