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

(-)a/installer/data/mysql/updatedatabase.pl (-5 / +4 lines)
Lines 10039-10048 if ( CheckVersion($DBversion) ) { Link Here
10039
$DBversion = "3.19.00.XXX";
10039
$DBversion = "3.19.00.XXX";
10040
if ( CheckVersion($DBversion) ) {
10040
if ( CheckVersion($DBversion) ) {
10041
    foreach my $format (@{ GetSupportList() }) {
10041
    foreach my $format (@{ GetSupportList() }) {
10042
        $dbh->do(
10042
        $dbh->do(q|
10043
            q/INSERT INTO authorised_values (category, authorised_value, lib, lib_opac, imageurl)
10043
            INSERT IGNORE INTO authorised_values (category, authorised_value, lib, lib_opac, imageurl)
10044
            VALUES (?, ?, ?, ?, ?)/,
10044
            VALUES (?, ?, ?, ?, ?)
10045
            {},
10045
        |, {},
10046
            'SUGGEST_FORMAT', $format->{itemtype}, $format->{description}, $format->{description}, $format->{imageurl}
10046
            'SUGGEST_FORMAT', $format->{itemtype}, $format->{description}, $format->{description}, $format->{imageurl}
10047
        );
10047
        );
10048
    }
10048
    }
10049
- 

Return to bug 9468