Bug 22770: Fix typo in German language description of el
[koha.git] / installer / data / mysql / atomicupdate / bug_22770_fix_language_description.perl
1 $DBversion = 'XXX'; # will be replaced by the RM
2 if( CheckVersion( $DBversion ) ) {
3     $dbh->do( 'UPDATE language_descriptions SET description = "Griechisch (Modern 1453-)"
4       WHERE subtag = "el" and type = "language" and lang ="de"' );
5     SetVersion( $DBversion );
6     print "Upgrade to $DBversion done (Bug 22770 - Fix typo in language description for el in German)\n";
7 }