javascript and list of suggestions is empty.
git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@10172
7612ce4b-ef26-0410-bec9-
ea0150e637f0
sqimap_mailbox_exists() check. Reported by Daniel Watts.
- Fixed decoding of quoted-printable text in decodeBody function.
Reported by João Carlos Mendes Luís.
+ - Added CR trimming to SquirrelSpell plugin in order to fix problems on
+ Windows systems.
Version 1.5.0 - 2 February 2004
-------------------------------
$sqspell_output = array();
for($i=1; $i<=2; $i++) {
while(!feof($pipes[$i])) {
- array_push($sqspell_output, rtrim(fgetss($pipes[$i],999),"\n"));
+ array_push($sqspell_output, rtrim(fgetss($pipes[$i],999),"\r\n"));
}
fclose($pipes[$i]);
}