From 0a0fcd31e039a01c0d7693b58a4d787109161954 Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Fri, 31 Mar 2017 13:22:37 +0000 Subject: [PATCH] Bug 17866 - DBRev 16.12.00.022 Signed-off-by: Kyle M Hall --- Koha.pm | 2 +- installer/data/mysql/atomicupdate/bug17866.perl | 5 ----- installer/data/mysql/updatedatabase.pl | 6 ++++++ 3 files changed, 7 insertions(+), 6 deletions(-) delete mode 100644 installer/data/mysql/atomicupdate/bug17866.perl diff --git a/Koha.pm b/Koha.pm index 4b51cd9ddc..6ff200e553 100644 --- a/Koha.pm +++ b/Koha.pm @@ -29,7 +29,7 @@ use vars qw{ $VERSION }; # - #4 : the developer version. The 4th number is the database subversion. # used by developers when the database changes. updatedatabase take care of the changes itself # and is automatically called by Auth.pm when needed. -$VERSION = "16.12.00.021"; +$VERSION = "16.12.00.022"; sub version { return $VERSION; diff --git a/installer/data/mysql/atomicupdate/bug17866.perl b/installer/data/mysql/atomicupdate/bug17866.perl deleted file mode 100644 index 15e9b0e3bf..0000000000 --- a/installer/data/mysql/atomicupdate/bug17866.perl +++ /dev/null @@ -1,5 +0,0 @@ -$DBversion = 'XXX'; # will be replaced by the RM -if( CheckVersion( $DBversion ) ) { - print "NOTE: The sender for serial claim notifications has been corrected. The email address of the staff member is no longer used. We will use the branch email address or KohaAdminEmailAddress, as is done for other notices.\n"; - print "Upgrade to $DBversion done (Bug 17866 - Change sender for serial claim notifications)\n"; -} diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index faff13dee5..c0c6ab013f 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -14073,6 +14073,12 @@ if( CheckVersion( $DBversion ) ) { print "Upgrade to $DBversion done (Bug 17708 - Renewal log seems empty)\n"; } +$DBversion = "16.12.00.022"; +if( CheckVersion( $DBversion ) ) { + print "NOTE: The sender for serial claim notifications has been corrected. The email address of the staff member is no longer used. We will use the branch email address or KohaAdminEmailAddress, as is done for other notices.\n"; + print "Upgrade to $DBversion done (Bug 17866 - Change sender for serial claim notifications)\n"; +} + # DEVELOPER PROCESS, search for anything to execute in the db_update directory # SEE bug 13068 # if there is anything in the atomicupdate, read and execute it. -- 2.39.5