diff --git a/docs/upgrades/upgrade_5.9.9-6.0.0.pl b/docs/upgrades/upgrade_5.9.9-6.0.0.pl index e755f83eb..a29328cf0 100644 --- a/docs/upgrades/upgrade_5.9.9-6.0.0.pl +++ b/docs/upgrades/upgrade_5.9.9-6.0.0.pl @@ -842,7 +842,7 @@ $replace{'t'} = { my ($sth, $data, $code, $table, $column, %identifier); foreach $table (keys %dbFields){ $sth = WebGUI::SQL->read("SELECT * FROM $table "); - die "Cannot read from table $table " if ($!); + die "Cannot read from table $table ".$! if ($!); while ($data = $sth->hashRef){ foreach $column (@{$dbFields{$table}{fields}}){ $code = $data->{$column};