@@ -, +, @@ --- installer/data/mysql/updatedatabase.pl | 10 ++++++++++ 1 file changed, 10 insertions(+) --- a/installer/data/mysql/updatedatabase.pl +++ a/installer/data/mysql/updatedatabase.pl @@ -9731,6 +9731,16 @@ if ( CheckVersion($DBversion) ) { SetVersion($DBversion); } +# IMPORTANT +# Here should be DB entry from 13379 + +$DBversion = "3.18.05.001"; +if(CheckVersion($DBversion)) { + $dbh->do(q{UPDATE authorised_values SET category='ORDER_CANCELLATION_REASON' WHERE category='ORDER_CANCELLATI'}); + print "Upgrade to $DBversion done (Bug 13380: Fix the authorised value categories if truncated with previous DB update (3.18.04.002))\n"; + SetVersion($DBversion); +} + =head1 FUNCTIONS =head2 TableExists($table) --