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

(-)a/installer/data/mysql/updatedatabase.pl (-5 / +4 lines)
Lines 10765-10774 if ( CheckVersion($DBversion) ) { Link Here
10765
$DBversion = "3.19.00.XXX";
10765
$DBversion = "3.19.00.XXX";
10766
if ( CheckVersion($DBversion) ) {
10766
if ( CheckVersion($DBversion) ) {
10767
    foreach my $format (@{ GetSupportList() }) {
10767
    foreach my $format (@{ GetSupportList() }) {
10768
        $dbh->do(
10768
        $dbh->do(q|
10769
            q/INSERT INTO authorised_values (category, authorised_value, lib, lib_opac, imageurl)
10769
            INSERT IGNORE INTO authorised_values (category, authorised_value, lib, lib_opac, imageurl)
10770
            VALUES (?, ?, ?, ?, ?)/,
10770
            VALUES (?, ?, ?, ?, ?)
10771
            {},
10771
        |, {},
10772
            'SUGGEST_FORMAT', $format->{itemtype}, $format->{description}, $format->{description}, $format->{imageurl}
10772
            'SUGGEST_FORMAT', $format->{itemtype}, $format->{description}, $format->{description}, $format->{imageurl}
10773
        );
10773
        );
10774
    }
10774
    }
10775
- 

Return to bug 9468