Fix für Bugs 1251 und 1253. Hintergrund: Die DB-Upgradescripte werden
mittels eval im Kontext einer Unterfunktion aufgerufen. Die Variablen,
die fälschlicherweise innerhalb der Upgradescripte mit "our" als
global deklariert wurden, sind aber innerhalb der Unterfunktion, aus
der sie ge-eval-t werden, nur mit "my" deklariert worden.
Falls das nun einige der automatischen Tests fehlschlagen lassen
sollte, dann müsste sich das Sven bitte nochmal ansehen.
die("This script cannot be run from the command line.") unless ($main::form);
-# import vars from caller
-our ($dbup_locale, $dbup_myconfig, $dbh, $iconv);
-
sub mydberror {
my ($msg) = @_;
die($dbup_locale->text("Database update error:") .
die("This script cannot be run from the command line.");
}
-# import vars from caller
-our ($dbup_locale, $dbup_myconfig, $dbh, $iconv);
-
if ( check_coa('Austria') ){
if ( coa_is_empty() ) {
die("This script cannot be run from the command line.") unless ($main::form);
-# import vars from caller
-our ($dbup_locale, $dbup_myconfig, $dbh, $iconv);
-
sub mydberror {
my ($msg) = @_;
die($dbup_locale->text("Database update error:") .
use strict;
-# import vars from caller
-our ($dbup_locale, $dbup_myconfig, $dbh);
-
die("This script cannot be run from the command line.") unless ($main::form);
sub mydberror {
die("This script cannot be run from the command line.") unless ($main::form);
-# import vars from caller
-our ($dbup_locale, $dbup_myconfig, $dbh, $iconv);
my $do_sql_migration = 0;
my ($check_sql, $sqlcode);