Browse Source

Bug 7167: Set final updatedatabase.pl version

3.12.x
Jared Camins-Esakov 12 years ago
parent
commit
c34017336c
  1. 3
      C4/Auth.pm
  2. 2
      C4/Context.pm

3
C4/Auth.pm

@ -587,7 +587,8 @@ sub version_check {
}
# check if you're uptodate, and if you're not, head to updater
my $koha39 = "3.1100001";
my $koha39 = C4::Context->final_linear_version;
$koha39 =~ s/(.*\..*)\.(.*)\.(.*)/$1$2$3/;
# Old updatedatabase method
if (C4::Context->preference('Version') < $koha39) {

2
C4/Context.pm

@ -229,7 +229,7 @@ This number is equal to the version in kohaversion.pl
=cut
sub final_linear_version {
return KOHAVERSION;
return '3.11.00.014';
}
=head2 read_config_file

Loading…
Cancel
Save