Upping the version number and logging the change in ChangeLog
[squirrelmail.git] / plugins / squirrelspell / setup.php
index daa8c1982ce470f04fddbbdd8745158ea8c47879..654b1107a7de2fdbfa1907fae51a5ab39cacc8e1 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.
     **  $Id$
     **/
 
-    /**
-     * This function checks whether the user's USER_AGENT is known to
-     * be broken. If so, returns true and the plugin is invisible to the
-     * offending browser.
-     */
-    function soupNazi(){
-
-        global $HTTP_USER_AGENT, $SQSPELL_SOUP_NAZI;
-        
-        require_once('../plugins/squirrelspell/sqspell_config.php');
-
-        $soup_menu = explode( ',', $SQSPELL_SOUP_NAZI );
-        return( in_array( trim( $HTTP_USER_AGENT ), $soup_menu ) );
-    }
-
     function squirrelmail_plugin_init_squirrelspell() {
         /* Standard initialization API. */
         global $squirrelmail_plugin_hooks;