From 9ed3fd2237048fb6fdbfba36c6851ec01ce986ee Mon Sep 17 00:00:00 2001 From: iliajie Date: Tue, 20 Jun 2023 23:37:36 +0300 Subject: [PATCH] Fix to disable `ispell` --- mailboxes/reply_mail.cgi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mailboxes/reply_mail.cgi b/mailboxes/reply_mail.cgi index 7a838332d..f667b2998 100755 --- a/mailboxes/reply_mail.cgi +++ b/mailboxes/reply_mail.cgi @@ -487,7 +487,7 @@ else { 0, $wcols ? "" : "style='width:100%'"), 2); } -if (&has_command("ispell")) { +if (&has_command("ispell") && $config{'ispell_enabled'}) { print &ui_table_row(undef, &ui_checkbox("spell", 1, $text{'reply_spell'}, 0), 2); }