Lines 23728-23733
if( CheckVersion( $DBversion ) ) {
Link Here
|
23728 |
NewVersion( $DBversion, 18532, 'Messaging preferences for auto renewals' ); |
23728 |
NewVersion( $DBversion, 18532, 'Messaging preferences for auto renewals' ); |
23729 |
} |
23729 |
} |
23730 |
|
23730 |
|
|
|
23731 |
$DBversion = '20.12.00.025'; |
23732 |
if( CheckVersion( $DBversion ) ) { |
23733 |
|
23734 |
$dbh->do(q| |
23735 |
INSERT IGNORE INTO systempreferences (variable,value,options,explanation,type) |
23736 |
VALUES ('ChargeFinesOnClosedDays', '0', NULL, 'Charge fines on days the library is closed.', 'YesNo') |
23737 |
|); |
23738 |
|
23739 |
NewVersion( $DBversion, 27835, "Add new system preference ChargeFinesOnClosedDays"); |
23740 |
} |
23741 |
|
23731 |
# SEE bug 13068 |
23742 |
# SEE bug 13068 |
23732 |
# if there is anything in the atomicupdate, read and execute it. |
23743 |
# if there is anything in the atomicupdate, read and execute it. |
23733 |
my $update_dir = C4::Context->config('intranetdir') . '/installer/data/mysql/atomicupdate/'; |
23744 |
my $update_dir = C4::Context->config('intranetdir') . '/installer/data/mysql/atomicupdate/'; |
23734 |
- |
|
|