X-Git-Url: https://vcs.fsf.org/?p=squirrelmail.git;a=blobdiff_plain;f=plugins%2Fsquirrelspell%2Fsetup.php;h=daa8c1982ce470f04fddbbdd8745158ea8c47879;hp=37ca6def51d33587686c0a0c90fcd22433a44c53;hb=3392dc867232037b2c6e2089ebcab9d64e154db7;hpb=2a15152a4f24af0a189273caef1048a0764fb92b;ds=sidebyside diff --git a/plugins/squirrelspell/setup.php b/plugins/squirrelspell/setup.php index 37ca6def..daa8c198 100644 --- a/plugins/squirrelspell/setup.php +++ b/plugins/squirrelspell/setup.php @@ -31,18 +31,18 @@ global $squirrelmail_plugin_hooks; $squirrelmail_plugin_hooks['compose_button_row']['squirrelspell'] = 'squirrelspell_setup'; - $squirrelmail_plugin_hooks['options_register']['squirrelspell'] = 'squirrelspell_options'; + $squirrelmail_plugin_hooks['optpage_register_block']['squirrelspell'] = 'squirrelspell_optpage_register_block'; $squirrelmail_plugin_hooks['options_link_and_description']['squirrelspell'] = 'squirrelspell_options'; } - function squirrelspell_options() { + function squirrelspell_optpage_register_block() { // Gets added to the user's OPTIONS page. - global $optionpages; + global $optpage_blocks; if ( !soupNazi() ) { /* Register Squirrelspell with the $optionpages array. */ - $optionpages[] = array( + $optpage_blocks[] = array( 'name' => _("SpellChecker Options"), 'url' => '../plugins/squirrelspell/sqspell_options.php', 'desc' => _("Here you may set up how your personal dictionary is stored, edit it, or choose which languages should be available to you when spell-checking."),