Parcourir la source

Bug 28244: DBRev 20.12.00.044

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
21.05.x
Jonathan Druart il y a 3 ans
Parent
révision
36c54d8185
  1. 2
      Koha.pm
  2. 8
      installer/data/mysql/atomicupdate/bug_28244.perl
  3. 12
      installer/data/mysql/updatedatabase.pl

2
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 = "20.12.00.043";
$VERSION = "20.12.00.044";
sub version {
return $VERSION;

8
installer/data/mysql/atomicupdate/bug_28244.perl

@ -1,8 +0,0 @@
$DBversion = 'XXX'; # will be replaced by the RM
if( CheckVersion( $DBversion ) ) {
$dbh->do( "UPDATE language_subtag_registry SET description = 'Ukrainian' WHERE subtag='uk' and type='language' and description='Ukranian'" );
$dbh->do( "UPDATE language_descriptions SET description = 'Ukrainian' WHERE subtag='uk' and type='language' and lang='en' and description='Ukranian'" );
# Always end with this (adjust the bug info)
NewVersion( $DBversion, 28244, "Fix Ukrainian typo in English");
}

12
installer/data/mysql/updatedatabase.pl

@ -24177,6 +24177,18 @@ if( CheckVersion( $DBversion ) ) {
NewVersion( $DBversion, 28258, "Update AUTO_RENEWAL content");
}
$DBversion = '20.12.00.044';
if( CheckVersion( $DBversion ) ) {
$dbh->do(q{
UPDATE language_subtag_registry SET description = 'Ukrainian' WHERE subtag='uk' and type='language' and description='Ukranian'
});
$dbh->do(q{
UPDATE language_descriptions SET description = 'Ukrainian' WHERE subtag='uk' and type='language' and lang='en' and description='Ukranian'
});
NewVersion( $DBversion, 28244, "Fix Ukrainian typo in English");
}
# 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/';

Chargement…
Annuler
Enregistrer