Bug 23293: (QA follow-up) Minor fix for tests
[koha.git] / installer / data / mysql / atomicupdate / bug_23293.perl
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) VALUES
5             ('OPACFineNoRenewalsIncludeCredits','1',NULL,'If enabled the value specified in OPACFineNoRenewals should include any unapplied account credits in the calculation','YesNo')
6     });
7
8     # Always end with this (adjust the bug info)
9     SetVersion( $DBversion );
10     print "Upgrade to $DBversion done (Bug 23293 - Add 'OPACFineNoRenewalsIncludeCredits' system preference)\n";
11 }