*/
if (!$SQSPELL_EREG("\n$sqspell_word\n", $words)){
$sqspell_symb=intval($tmparray[2])-1;
- if (!$misses[$sqspell_word]) {
- $misses[$sqspell_word] = '_NONE';
- $missed_words[$errors] = $sqspell_word;
- $errors++;
+ if (!isset($misses[$sqspell_word])) {
+ $misses[$sqspell_word] = '_NONE';
+ $missed_words[$errors] = $sqspell_word;
+ $errors++;
}
- if ($locations[$sqspell_word]) $locations[$sqspell_word] .= ', ';
+ if (isset($locations[$sqspell_word])) {
+ $locations[$sqspell_word] .= ', ';
+ } else {
+ $locations[$sqspell_word] = '';
+ }
$locations[$sqspell_word] .= "$current_line:$sqspell_symb";
}
break;