|
Line 0
Link Here
|
|
|
1 |
$DBversion = 'XXX'; # will be replaced by the RM |
| 2 |
if( CheckVersion( $DBversion ) ) { |
| 3 |
$dbh->do(q{ |
| 4 |
INSERT IGNORE INTO systempreferences (variable,value,options,explanation,type) |
| 5 |
VALUES ('XSLTCache','1',NULL,'Enable/disable XSLT cache','YesNo') |
| 6 |
}); |
| 7 |
SetVersion( $DBversion ); |
| 8 |
print "Upgrade to $DBversion done (Bug 2xxxx - Add XSLTCache system preference)\n"; |
| 9 |
} |