diff options
author | andi <andi@splitbrain.org> | 2005-06-30 22:03:59 +0200 |
---|---|---|
committer | andi <andi@splitbrain.org> | 2005-06-30 22:03:59 +0200 |
commit | 964f27985ee553981a71f98c24786a976b7fdbae (patch) | |
tree | dafb4211ef7226bff0ba2a813ac92e60aa8423ae | |
parent | 549111efab008942c840b0bd13eab46daddcf644 (diff) | |
download | rpg-964f27985ee553981a71f98c24786a976b7fdbae.tar.gz rpg-964f27985ee553981a71f98c24786a976b7fdbae.tar.bz2 |
spellchecker fix #428
darcs-hash:20050630200359-9977f-f51c2544ec20fc09a611c997cf614c13088a3cba.gz
-rw-r--r-- | inc/aspell.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/aspell.php b/inc/aspell.php index 1cbbb2dc3..17ad4884a 100644 --- a/inc/aspell.php +++ b/inc/aspell.php @@ -179,7 +179,7 @@ class Aspell{ } // prepare text for Aspell and handle it over - $string = "^".str_replace("\n", "\n^",$text)."^\n"; + $string = "^".str_replace("\n", "\n^",$text); fwrite($pipes[0],$string); // send text to Aspell fclose($pipes[0]); |