Revision c607fb40
Von Sven Schöling vor mehr als 9 Jahren hinzugefügt
bin/mozilla/io.pl | ||
---|---|---|
918 | 918 |
my $script = $form->{"script"}; |
919 | 919 |
$script =~ s|.*/||; |
920 | 920 |
$script =~ s|.pl$||; |
921 |
$locale = new Locale($::lx_office_conf{system}->{language}, $script);
|
|
921 |
$locale = Locale->new($::lx_office_conf{system}->{language}, $script);
|
|
922 | 922 |
|
923 | 923 |
map { $form->{"select$_"} = "" } ($form->{vc}, "currency"); |
924 | 924 |
|
... | ... | |
1247 | 1247 |
$form->error($locale->text('Select postscript or PDF!')) |
1248 | 1248 |
if ($form->{format} !~ /(postscript|pdf)/); |
1249 | 1249 |
|
1250 |
$old_form = new Form;
|
|
1250 |
$old_form = Form->new;
|
|
1251 | 1251 |
map { $old_form->{$_} = $form->{$_} } keys %$form; |
1252 | 1252 |
} |
1253 | 1253 |
|
Auch abrufbar als: Unified diff
Indirekte Objektnotation fixen