Lines 10681-10689
if ( C4::Context->preference("Version") < TransformToNum($DBversion) ) {
Link Here
|
10681 |
map( $serialseq =~ s/$_/__SPLIT__/, @splits ); |
10681 |
map( $serialseq =~ s/$_/__SPLIT__/, @splits ); |
10682 |
( |
10682 |
( |
10683 |
undef, |
10683 |
undef, |
10684 |
$enumeration_data{ $indexes[0] }, |
10684 |
$enumeration_data{ $indexes[0] // q{} }, |
10685 |
$enumeration_data{ $indexes[1] }, |
10685 |
$enumeration_data{ $indexes[1] // q{} }, |
10686 |
$enumeration_data{ $indexes[2] } |
10686 |
$enumeration_data{ $indexes[2] // q{} } |
10687 |
) = split( /__SPLIT__/, $serialseq ); |
10687 |
) = split( /__SPLIT__/, $serialseq ); |
10688 |
} |
10688 |
} |
10689 |
else |
10689 |
else |
10690 |
- |
|
|