Lines 8560-8572
if ( CheckVersion($DBversion) ) {
Link Here
|
8560 |
SetVersion($DBversion); |
8560 |
SetVersion($DBversion); |
8561 |
} |
8561 |
} |
8562 |
|
8562 |
|
8563 |
$DBversion = "3.15.00.XXX"; |
8563 |
$DBversion = "3.17.00.XXX"; |
8564 |
if ( CheckVersion($DBversion) ) { |
8564 |
if ( CheckVersion($DBversion) ) { |
8565 |
$dbh->do(q{ |
8565 |
$dbh->do(q{ |
8566 |
DELETE FROM systempreferences WHERE variable = 'UseTableSortForCirc' |
8566 |
DELETE FROM systempreferences WHERE variable = 'UseTablesortForCirc' |
8567 |
}); |
8567 |
}); |
8568 |
|
8568 |
|
8569 |
print "Upgrade to $DBversion done (Bug 11703 - Convert checkouts table to ajax datatable)\n"; |
8569 |
print "Upgrade to $DBversion done (Bug 11703 - Remove UseTablesortForCirc syspref)\n"; |
8570 |
SetVersion($DBversion); |
8570 |
SetVersion($DBversion); |
8571 |
} |
8571 |
} |
8572 |
|
8572 |
|
8573 |
- |
|
|