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

(-)a/installer/data/mysql/updatedatabase.pl (-5 / +4 lines)
Lines 11314-11323 if ( CheckVersion($DBversion) ) { Link Here
11314
$DBversion = "3.19.00.XXX";
11314
$DBversion = "3.19.00.XXX";
11315
if ( CheckVersion($DBversion) ) {
11315
if ( CheckVersion($DBversion) ) {
11316
    foreach my $format (@{ GetSupportList() }) {
11316
    foreach my $format (@{ GetSupportList() }) {
11317
        $dbh->do(
11317
        $dbh->do(q|
11318
            q/INSERT INTO authorised_values (category, authorised_value, lib, lib_opac, imageurl)
11318
            INSERT IGNORE INTO authorised_values (category, authorised_value, lib, lib_opac, imageurl)
11319
            VALUES (?, ?, ?, ?, ?)/,
11319
            VALUES (?, ?, ?, ?, ?)
11320
            {},
11320
        |, {},
11321
            'SUGGEST_FORMAT', $format->{itemtype}, $format->{description}, $format->{description}, $format->{imageurl}
11321
            'SUGGEST_FORMAT', $format->{itemtype}, $format->{description}, $format->{description}, $format->{imageurl}
11322
        );
11322
        );
11323
    }
11323
    }
11324
- 

Return to bug 9468