Quote:
Originally Posted by tamarian
Try this: open vbspell.php, find:
PHP Code:
preg_match_all ( "/" . $ignore_sets . "\[[^\]]+\]|[[:alpha:]']+|<[^>]+>|&[^;\ ]+;/im", $mystr, $alphas, PREG_OFFSET_CAPTURE|PREG_PATTERN_ORDER);
Replace with:
PHP Code:
preg_match_all ( "/" . $ignore_sets . "\[[^\]]+\]|[[:alpha:]]+|<[^>]+>|&[^;\ ]+;/im", $mystr, $alphas, PREG_OFFSET_CAPTURE|PREG_PATTERN_ORDER);
|
No, sorry. No difference. Spell checking:
word 'word' "word"
still finds 'word' misspelled.
Thx,
D.