thomascube
2010-09-21 cb2bc809ef29f349d38c89e202d821e67bb4c947
program/steps/utils/spell_pspell.inc
@@ -30,9 +30,6 @@
    exit;
}
// max. number of suggestions for one word
define('MAX_SUGGESTIONS', 10);
// read input
$data = file_get_contents('php://input');
@@ -59,7 +56,7 @@
    if ($word && $plink && preg_match('/[^0-9\.]/', $word)
   && !pspell_check($plink, $word)) {
        $suggestions = pspell_suggest($plink, $word);
   if (sizeof($suggestions)>10)
   if (sizeof($suggestions)>MAX_SUGGESTIONS)
     $suggestions = array_slice($suggestions, 0, MAX_SUGGESTIONS);
        $out .= '<c o="'.$pos.'" l="'.$len.'">';
@@ -75,4 +72,4 @@
echo $out;
exit;
?>