Skip to content

Commit

Permalink
Fix signature in a new message
Browse files Browse the repository at this point in the history
  • Loading branch information
iliajie committed Sep 6, 2023
1 parent 941cd61 commit f7935e2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mailbox/reply_mail.cgi
Original file line number Diff line number Diff line change
Expand Up @@ -811,7 +811,7 @@ my $iframe_quote;
$iframe_quote = &iframe_quote($quote)
if (!$in{'new'} && !$in{'enew'});
my $draft;
$draft = $quote if ($in{'enew'});
$draft = $quote if ($in{'new'} || $in{'enew'});

if ($html_edit) {
# Get HTML editor and replies
Expand Down Expand Up @@ -843,7 +843,7 @@ else {
$wm =~ s/^wrap=//g;
my $wcols = $userconfig{'wrap_compose'};
print &ui_table_row(undef,
&ui_textarea("body", "\n".$draft || "\n\n$sig\n\n$quote", 16,
&ui_textarea("body", "\n".($draft || "\n\n$sig\n\n$quote"), 16,
$wcols || 80,
$wcols ? "hard" : "",
0,
Expand Down

0 comments on commit f7935e2

Please sign in to comment.