Ignore:
Timestamp:
Jul 30, 2014 10:43:49 PM (10 years ago)
Author:
anonymous
Message:

Changed private methods and properties to protected. A few minor bug fixes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/lib/SpellCheck.inc.php

    r479 r484  
    6161class SpellCheck {
    6262
    63     private $_params = array(
     63    protected $_params = array(
    6464        'language' => 'en',
    6565        'personal_wordlist' => '', // Text file to save custom words to.
     
    7070    );
    7171
    72     private $_pspell_cfg_handle;
    73     private $_pspell_handle;
    74     private $_use_personal_wordlist = false;
    75     private $_errors = array();
     72    protected $_pspell_cfg_handle;
     73    protected $_pspell_handle;
     74    protected $_use_personal_wordlist = false;
     75    protected $_errors = array();
    7676
    7777    /**
Note: See TracChangeset for help on using the changeset viewer.