X-Git-Url: https://vcs.fsf.org/?p=squirrelmail.git;a=blobdiff_plain;f=plugins%2Fsquirrelspell%2Fmodules%2Foptions_main.mod;h=bfed60dbd11d07c9a87247b78061548d2ae524b1;hp=61c3e964a45a92476118f54841e925f5f712e0b9;hb=353d074afac6827c90f4bb03e846c5e453d3b5b1;hpb=d4e46166df04792c6b939356ea5dfda8e47bba7b diff --git a/plugins/squirrelspell/modules/options_main.mod b/plugins/squirrelspell/modules/options_main.mod index 61c3e964..bfed60db 100644 --- a/plugins/squirrelspell/modules/options_main.mod +++ b/plugins/squirrelspell/modules/options_main.mod @@ -8,15 +8,21 @@ * Default page called when accessing SquirrelSpell's options. * * @author Konstantin Riabitsev - * @copyright © 1999-2009 The SquirrelMail Project Team + * @copyright 1999-2018 The SquirrelMail Project Team * @license http://opensource.org/licenses/gpl-license.php GNU Public License * @version $Id$ * @package plugins * @subpackage squirrelspell */ -global $SQSPELL_APP; -$msg = '

' +global $SQSPELL_APP, $main_options_changed_message; + +if (!empty($main_options_changed_message)) + $msg = $main_options_changed_message; +else + $msg = ''; + +$msg .= '

' . _("Please choose which options you wish to set up:") . '

' . '\n"; + + + +// add checkbox to enable/disable the spellcheck button on compose screen +// +$sqspell_show_button = getPref($data_dir, $username, 'sqspell_show_button', 1); +$msg .= '
' + . '' + . '' + . '

' + . '\n"; +$msg .= "

"; + + sqspell_makePage( _("SquirrelSpell Options Menu"), null, $msg); /**