Make WordPress Core


Ignore:
Timestamp:
03/07/2007 04:26:26 AM (18 years ago)
Author:
ryan
Message:

Update to tinyMCE spellchecker 1.0.3.1

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/js/tinymce/plugins/spellchecker/config.php

    r4747 r4985  
    22    $spellCheckerConfig = array();
    33
     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
    49    // General settings
    510    $spellCheckerConfig['enabled'] = true;
    6 
    7     // Pspell shell specific settings
    8     $spellCheckerConfig['tinypspellshell.aspell'] = '/usr/bin/aspell';
    9     $spellCheckerConfig['tinypspellshell.tmp'] = '/tmp/tinyspell/0';
    1011
    1112    // Default settings
     
    1819    $spellCheckerConfig['default.encoding'] = "";
    1920
    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';
    2924?>
Note: See TracChangeset for help on using the changeset viewer.