Lines 11490-11498
if ( C4::Context->preference("Version") < TransformToNum($DBversion) ) {
Link Here
|
11490 |
map( $serialseq =~ s/$_/__SPLIT__/, @splits ); |
11490 |
map( $serialseq =~ s/$_/__SPLIT__/, @splits ); |
11491 |
( |
11491 |
( |
11492 |
undef, |
11492 |
undef, |
11493 |
$enumeration_data{ $indexes[0] }, |
11493 |
$enumeration_data{ $indexes[0] // q{} }, |
11494 |
$enumeration_data{ $indexes[1] }, |
11494 |
$enumeration_data{ $indexes[1] // q{} }, |
11495 |
$enumeration_data{ $indexes[2] } |
11495 |
$enumeration_data{ $indexes[2] // q{} } |
11496 |
) = split( /__SPLIT__/, $serialseq ); |
11496 |
) = split( /__SPLIT__/, $serialseq ); |
11497 |
} |
11497 |
} |
11498 |
else |
11498 |
else |
11499 |
- |
|
|