Getting ready for 1.2.0 release.
[squirrelmail.git] / plugins / squirrelspell / setup.php
index 37ca6def51d33587686c0a0c90fcd22433a44c53..cce6adfec0c0e510bf81f132dc36676f7f6dee67 100644 (file)
@@ -3,7 +3,7 @@
    /**
     **  setup.php -- Squirrelspell setup file
     **
-    **  Copyright (c) 1999-2001 The SquirrelMail development team
+    **  Copyright (c) 1999-2002 The SquirrelMail development team
     **  Licensed under the GNU GPL. For full terms see the file COPYING.
     **
     **  This is a standard Squirrelmail-1.2 API for plugins.
         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."),