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

(-)a/installer/data/mysql/updatedatabase.pl (-1 / +2 lines)
Lines 6556-6561 if ( CheckVersion($DBversion) ) { Link Here
6556
    print "Upgrade to $DBversion done (Bug 9827 - Remove 'insecure' system preference)\n";
6556
    print "Upgrade to $DBversion done (Bug 9827 - Remove 'insecure' system preference)\n";
6557
    SetVersion($DBversion);
6557
    SetVersion($DBversion);
6558
}
6558
}
6559
6559
$DBversion = "3.11.00.XXX";
6560
$DBversion = "3.11.00.XXX";
6560
if ( CheckVersion($DBversion) ) {
6561
if ( CheckVersion($DBversion) ) {
6561
   $dbh->do("INSERT INTO systempreferences (variable,value,options,explanation,type) VALUES('DisplayIconsXSLT', '1', '', 'If ON, displays the format, audience, and material type icons in XSLT MARC21 results and detail pages.', 'YesNo');");
6562
   $dbh->do("INSERT INTO systempreferences (variable,value,options,explanation,type) VALUES('DisplayIconsXSLT', '1', '', 'If ON, displays the format, audience, and material type icons in XSLT MARC21 results and detail pages.', 'YesNo');");
Lines 6585-6590 sub TableExists { Link Here
6585
Drop all foreign keys of the table $table
6586
Drop all foreign keys of the table $table
6586
6587
6587
=cut
6588
=cut
6589
6588
sub DropAllForeignKeys {
6590
sub DropAllForeignKeys {
6589
    my ($table) = @_;
6591
    my ($table) = @_;
6590
    # get the table description
6592
    # get the table description
6591
- 

Return to bug 9403