From 0efe8635921a1bf2524fa47e11a50b261476f571 Mon Sep 17 00:00:00 2001 From: Paul Poulain Date: Wed, 28 Nov 2012 14:48:28 +0100 Subject: [PATCH] Bug 7167 follow-up setting DBrevision, before pushing The 2 files C4/Auth.pm and install.pl *must* have the $version variable set to what is the last old-mechanism for updatedatabase This patch set to 3.11.00001 that is the last number when I QA this patch --- C4/Auth.pm | 2 +- installer/install.pl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/C4/Auth.pm b/C4/Auth.pm index 40de536..7e486e5 100644 --- a/C4/Auth.pm +++ b/C4/Auth.pm @@ -585,7 +585,7 @@ sub version_check { } # check if you're uptodate, and if you're not, head to updater - my $koha39 = "3.0900028"; + my $koha39 = "3.1100001"; # Old updatedatabase method if (C4::Context->preference('Version') < $koha39) { diff --git a/installer/install.pl b/installer/install.pl index 01360e6..b6f66a7 100755 --- a/installer/install.pl +++ b/installer/install.pl @@ -320,7 +320,7 @@ elsif ( $step && $step == 3 ) { warn "# plack? inserted PERL5LIB $ENV{PERL5LIB}\n"; } - my $koha39 = "3.0900028"; + my $koha39 = "3.1100002"; my $cmd; # Old updatedatabase method my $current_version = C4::Context->preference('Version'); -- 1.7.9.5