View | Details | Raw Unified | Return to bug 28030
Collapse All | Expand All

(-)a/Koha.pm (-1 / +1 lines)
Lines 29-35 use vars qw{ $VERSION }; Link Here
29
# - #4 : the developer version. The 4th number is the database subversion.
29
# - #4 : the developer version. The 4th number is the database subversion.
30
#        used by developers when the database changes. updatedatabase take care of the changes itself
30
#        used by developers when the database changes. updatedatabase take care of the changes itself
31
#        and is automatically called by Auth.pm when needed.
31
#        and is automatically called by Auth.pm when needed.
32
$VERSION = "20.12.00.024";
32
$VERSION = "20.12.00.025";
33
33
34
sub version {
34
sub version {
35
    return $VERSION;
35
    return $VERSION;
(-)a/installer/data/mysql/atomicupdate/bug_27835.perl (-10 lines)
Lines 1-10 Link Here
1
$DBversion = 'XXX'; # will be replaced by the RM
2
if( CheckVersion( $DBversion ) ) {
3
4
    $dbh->do(q|
5
        INSERT IGNORE INTO systempreferences (variable,value,options,explanation,type)
6
        VALUES ('ChargeFinesOnClosedDays', '0', NULL, 'Charge fines on days the library is closed.', 'YesNo')
7
    |);
8
9
    NewVersion( $DBversion, 27835, "Add new system preference ChargeFinesOnClosedDays");
10
}
(-)a/installer/data/mysql/updatedatabase.pl (-1 / +11 lines)
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
- 

Return to bug 28030