Пример #1
0
 /**
  * Spellcheck
  *
  * Used by the Spellcheck crappola
  *
  * @access	public
  * @return	void
  */
 function spellcheck()
 {
     $this->output->enable_profiler(FALSE);
     if (!class_exists('EE_Spellcheck')) {
         require APPPATH . 'libraries/Spellcheck.php';
     }
     return EE_Spellcheck::check();
 }
Пример #2
0
 /** -----------------------------------------
 	/**  Spell Check for Textareas
 	/** -----------------------------------------*/
 function spellcheck()
 {
     if (!class_exists('EE_Spellcheck')) {
         require APPPATH . 'libraries/Spellcheck.php';
     }
     return EE_Spellcheck::check();
 }