Typo
[squirrelmail.git] / plugins / squirrelspell / sqspell_config.php
CommitLineData
849bdf42 1<?php
849bdf42 2
9804bcde 3 /**
3392dc86 4 * sqspell_config.php -- SquirrelSpell Configuration file.
5 *
15e6162e 6 * Copyright (c) 1999-2002 The SquirrelMail Project Team
7 * Licensed under the GNU GPL. For full terms see the file COPYING.
3392dc86 8 *
9 *
10 *
11 * $Id$
12 */
13
14 require_once('../functions/prefs.php');
849bdf42 15
9804bcde 16 /* Just for poor wretched souls with E_ALL. :) */
17 global $username, $data_dir;
849bdf42 18
2b5a7157 19 $SQSPELL_APP = array( 'English' => 'ispell -a',
20 'Spanish' => 'ispell -d spanish -a' );
9804bcde 21 $SQSPELL_APP_DEFAULT = 'English';
3392dc86 22 $SQSPELL_WORDS_FILE =
23 getHashedFile($username, $data_dir, "$username.words");
9804bcde 24 $SQSPELL_EREG = 'ereg';
25 $SQSPELL_SOUP_NAZI = 'Mozilla/3, Mozilla/2, Opera 4, Opera/4, Macintosh';
849bdf42 26
3392dc86 27?>