From b728906d349a901e4ca443c2dcea9815020b3a9f Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Sat, 15 Jun 2019 07:50:43 +0100 Subject: [PATCH] Bug 22770: DBRev 19.05.00.003 Signed-off-by: Martin Renvoize (cherry picked from commit 4452273669c98bcbaf409dc653d01d5596ca415a) Signed-off-by: Fridolin Somers --- Koha.pm | 2 +- .../atomicupdate/bug_22770_fix_language_description.perl | 7 ------- installer/data/mysql/updatedatabase.pl | 8 ++++++++ 3 files changed, 9 insertions(+), 8 deletions(-) delete mode 100644 installer/data/mysql/atomicupdate/bug_22770_fix_language_description.perl diff --git a/Koha.pm b/Koha.pm index 26fef8af10..3b4799bc9f 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 = "19.05.00.002"; +$VERSION = "19.05.00.003"; sub version { return $VERSION; diff --git a/installer/data/mysql/atomicupdate/bug_22770_fix_language_description.perl b/installer/data/mysql/atomicupdate/bug_22770_fix_language_description.perl deleted file mode 100644 index 5a0d8e687c..0000000000 --- a/installer/data/mysql/atomicupdate/bug_22770_fix_language_description.perl +++ /dev/null @@ -1,7 +0,0 @@ -$DBversion = 'XXX'; # will be replaced by the RM -if( CheckVersion( $DBversion ) ) { - $dbh->do( 'UPDATE language_descriptions SET description = "Griechisch (Modern 1453-)" - WHERE subtag = "el" and type = "language" and lang ="de"' ); - SetVersion( $DBversion ); - print "Upgrade to $DBversion done (Bug 22770 - Fix typo in language description for el in German)\n"; -} diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index fb0fe3efcf..18d3b4dcb0 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -18706,6 +18706,14 @@ if ( CheckVersion($DBversion) ) { print "Upgrade to $DBversion done (Bug 10215 - Increase the size of opacnote and librariannote for table subscriptionhistory)\n"; } +$DBversion = '19.05.00.003'; +if( CheckVersion( $DBversion ) ) { + $dbh->do( 'UPDATE language_descriptions SET description = "Griechisch (Modern 1453-)" + WHERE subtag = "el" and type = "language" and lang ="de"' ); + SetVersion( $DBversion ); + print "Upgrade to $DBversion done (Bug 22770 - Fix typo in language description for el in German)\n"; +} + # SEE bug 13068 # if there is anything in the atomicupdate, read and execute it. -- 2.39.5