Cleaned up options main for IE and Netscape compatibility. Did major work on the...
[squirrelmail.git] / plugins / squirrelspell / setup.php
index 37ca6def51d33587686c0a0c90fcd22433a44c53..daa8c1982ce470f04fddbbdd8745158ea8c47879 100644 (file)
         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."),