Revision 74fca575
Von Sven Schöling vor etwa 13 Jahren hinzugefügt
SL/Common.pm | ||
---|---|---|
496 | 496 |
|
497 | 497 |
$intnotes .= "\n\n" if ($intnotes); |
498 | 498 |
|
499 |
my $cc = $main::locale->text('Cc') . ": $form->{cc}\n" if $form->{cc};
|
|
500 |
my $bcc = $main::locale->text('Bcc') . ": $form->{bcc}\n" if $form->{bcc};
|
|
499 |
my $cc = $form->{cc} ? $main::locale->text('Cc') . ": $form->{cc}\n" : '';
|
|
500 |
my $bcc = $form->{bcc} ? $main::locale->text('Bcc') . ": $form->{bcc}\n" : '';
|
|
501 | 501 |
my $now = scalar localtime; |
502 | 502 |
|
503 | 503 |
$intnotes .= $main::locale->text('[email]') . "\n" |
Auch abrufbar als: Unified diff
Fixes für das "my $var if $cond;" pattern.