- Timestamp:
- 03/07/2007 04:26:26 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/js/tinymce/plugins/spellchecker/config.php
r4747 r4985 2 2 $spellCheckerConfig = array(); 3 3 4 // Spellchecker class use 5 // require_once("classes/TinyPspellShell.class.php"); // Command line pspell 6 require_once("classes/TinyGoogleSpell.class.php"); // Google web service 7 // require_once("classes/TinyPspell.class.php"); // Internal PHP version 8 4 9 // General settings 5 10 $spellCheckerConfig['enabled'] = true; 6 7 // Pspell shell specific settings8 $spellCheckerConfig['tinypspellshell.aspell'] = '/usr/bin/aspell';9 $spellCheckerConfig['tinypspellshell.tmp'] = '/tmp/tinyspell/0';10 11 11 12 // Default settings … … 18 19 $spellCheckerConfig['default.encoding'] = ""; 19 20 20 // Spellchecker class use 21 if ( function_exists('pspell_new') ) 22 require_once("classes/TinyPspell.class.php"); // Internal PHP version 23 24 elseif ( file_exists($spellCheckerConfig['tinypspellshell.aspell']) ) 25 require_once("classes/TinyPspellShell.class.php"); // Command line pspell 26 27 else 28 require_once("classes/TinyGoogleSpell.class.php"); // Google web service 21 // Pspell shell specific settings 22 $spellCheckerConfig['tinypspellshell.aspell'] = '/usr/bin/aspell'; 23 $spellCheckerConfig['tinypspellshell.tmp'] = '/tmp'; 29 24 ?>
Note: See TracChangeset
for help on using the changeset viewer.