Skip to content

Commit

Permalink
Merge branch 'master' of github.com:webmin/usermin
Browse files Browse the repository at this point in the history
  • Loading branch information
jcameron committed Sep 9, 2023
2 parents c1fdad0 + f7935e2 commit 70b54d3
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 70b54d3

Please sign in to comment.