Bug 22770: DBRev 19.06.00.004

Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
This commit is contained in:
Martin Renvoize 2019-06-15 07:50:43 +01:00
parent eba980b351
commit 4452273669
Signed by: martin.renvoize
GPG key ID: 422B469130441A0F
3 changed files with 9 additions and 8 deletions

View file

@ -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.06.00.003";
$VERSION = "19.06.00.004";
sub version {
return $VERSION;

View file

@ -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";
}

View file

@ -18720,6 +18720,14 @@ if( CheckVersion( $DBversion ) ) {
print "Upgrade to $DBversion done (Bug 22867 - UniqueItemFields preference value should be pipe-delimited)\n";
}
$DBversion = '19.06.00.004';
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.
my $update_dir = C4::Context->config('intranetdir') . '/installer/data/mysql/atomicupdate/';