Lines 9698-9706
if ( C4::Context->preference("Version") < TransformToNum($DBversion) ) {
Link Here
|
9698 |
map( $serialseq =~ s/$_/__SPLIT__/, @splits ); |
9698 |
map( $serialseq =~ s/$_/__SPLIT__/, @splits ); |
9699 |
( |
9699 |
( |
9700 |
undef, |
9700 |
undef, |
9701 |
$enumeration_data{ $indexes[0] }, |
9701 |
$enumeration_data{ $indexes[0] // q{} }, |
9702 |
$enumeration_data{ $indexes[1] }, |
9702 |
$enumeration_data{ $indexes[1] // q{} }, |
9703 |
$enumeration_data{ $indexes[2] } |
9703 |
$enumeration_data{ $indexes[2] // q{} } |
9704 |
) = split( /__SPLIT__/, $serialseq ); |
9704 |
) = split( /__SPLIT__/, $serialseq ); |
9705 |
} |
9705 |
} |
9706 |
else |
9706 |
else |
9707 |
- |
|
|