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

(-)a/installer/data/mysql/updatedatabase.pl (+6 lines)
Lines 9579-9584 if ( CheckVersion($DBversion) ) { Link Here
9579
    SetVersion ($DBversion);
9579
    SetVersion ($DBversion);
9580
}
9580
}
9581
9581
9582
$DBversion = "3.19.00.000";
9583
if ( CheckVersion($DBversion) ) {
9584
    print "Upgrade to $DBversion done (there's life after 3.18)\n";
9585
    SetVersion ($DBversion);
9586
}
9587
9582
=head1 FUNCTIONS
9588
=head1 FUNCTIONS
9583
9589
9584
=head2 TableExists($table)
9590
=head2 TableExists($table)
(-)a/kohaversion.pl (-2 / +1 lines)
Lines 16-22 the kohaversion is divided in 4 parts : Link Here
16
use strict;
16
use strict;
17
17
18
sub kohaversion {
18
sub kohaversion {
19
    our $VERSION = '3.18.00.000';
19
    our $VERSION = '3.19.00.000';
20
    # version needs to be set this way
20
    # version needs to be set this way
21
    # so that it can be picked up by Makefile.PL
21
    # so that it can be picked up by Makefile.PL
22
    # during install
22
    # during install
23
- 

Return to bug 12404