diff options
author | andi <andi@splitbrain.org> | 2005-07-05 20:18:19 +0200 |
---|---|---|
committer | andi <andi@splitbrain.org> | 2005-07-05 20:18:19 +0200 |
commit | b40b0c0d7a7f5706bd77bba0a52ab838cc8cdfda (patch) | |
tree | b49b971c774ed878f9d94c08e2a00b49ae751bf7 | |
parent | 0c16b1d365abfa99863514dfab095daed951aec5 (diff) | |
download | rpg-b40b0c0d7a7f5706bd77bba0a52ab838cc8cdfda.tar.gz rpg-b40b0c0d7a7f5706bd77bba0a52ab838cc8cdfda.tar.bz2 |
spellchecker: removed wrong stripslashes calls
darcs-hash:20050705181819-9977f-204dfb5ed3e38f9ec92f26f0751b9799aacd03a0.gz
-rw-r--r-- | lib/exe/spellcheck.php | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/exe/spellcheck.php b/lib/exe/spellcheck.php index 67448673c..968e25395 100644 --- a/lib/exe/spellcheck.php +++ b/lib/exe/spellcheck.php @@ -78,9 +78,6 @@ if(function_exists($call)){ * @author Andreas Gohr <andi@splitbrain.org> */ function spaceslink($string, $check=""){ - $string = stripslashes($string); - $check = stripslashes($check); - $result = ' '; //opening [[ $result .= str_pad('',utf8_strlen($string),' '); $result .= $check; |