|
Lines 12022-12027
if ( C4::Context->preference("Version") < TransformToNum($DBversion) ) {
Link Here
|
| 12022 |
SetVersion($DBversion); |
12022 |
SetVersion($DBversion); |
| 12023 |
} |
12023 |
} |
| 12024 |
|
12024 |
|
|
|
12025 |
|
| 12026 |
$DBversion = "XXX"; |
| 12027 |
if ( C4::Context->preference("Version") < TransformToNum($DBversion) ) { |
| 12028 |
|
| 12029 |
my $c = $dbh->selectrow_array('SELECT COUNT(*) FROM systempreferences WHERE variable="intranetcolorstylesheet" AND value="blue.css"'); |
| 12030 |
|
| 12031 |
if ( $c ) { |
| 12032 |
print "WARNING: You are using a stylesheeet which has been removed from the Koha codebase.\n"; |
| 12033 |
print "Update your intranetcolorstylesheet.\n"; |
| 12034 |
} |
| 12035 |
print "Upgrade to $DBversion done (Bug 16019 - Check intranetcolorstylesheet for blue.css)\n"; |
| 12036 |
SetVersion($DBversion); |
| 12037 |
} |
| 12038 |
|
| 12025 |
# DEVELOPER PROCESS, search for anything to execute in the db_update directory |
12039 |
# DEVELOPER PROCESS, search for anything to execute in the db_update directory |
| 12026 |
# SEE bug 13068 |
12040 |
# SEE bug 13068 |
| 12027 |
# if there is anything in the atomicupdate, read and execute it. |
12041 |
# if there is anything in the atomicupdate, read and execute it. |
| 12028 |
- |
|
|