View | Details | Raw Unified | Return to bug 12375
Collapse All | Expand All

(-)a/installer/data/mysql/updatedatabase.pl (-4 / +3 lines)
Lines 8619-8627 if ( C4::Context->preference("Version") < TransformToNum($DBversion) ) { Link Here
8619
                map( $serialseq =~ s/$_/__SPLIT__/, @splits );
8619
                map( $serialseq =~ s/$_/__SPLIT__/, @splits );
8620
                (
8620
                (
8621
                    undef,
8621
                    undef,
8622
                    $enumeration_data{ $indexes[0] },
8622
                    $enumeration_data{ $indexes[0] // q{} },
8623
                    $enumeration_data{ $indexes[1] },
8623
                    $enumeration_data{ $indexes[1] // q{} },
8624
                    $enumeration_data{ $indexes[2] }
8624
                    $enumeration_data{ $indexes[2] // q{} }
8625
                ) = split( /__SPLIT__/, $serialseq );
8625
                ) = split( /__SPLIT__/, $serialseq );
8626
            }
8626
            }
8627
            else
8627
            else
8628
- 

Return to bug 12375