Unlink TinySpell? tmp files

git-svn-id: https://develop.svn.wordpress.org/trunk@3879 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2006-06-15 21:28:08 +00:00
parent 718e9ebd27
commit 92b23838c8
1 changed files with 4 additions and 2 deletions

View File

@ -27,7 +27,7 @@ class TinyPspellShell {
$this->errorMsg = array();
$this->tmpfile = tempnam($config['tinypspellshell.tmp'], "tinyspell");
$this->cmd = "cat ". $this->tmpfile ." | " . $config['tinypspellshell.aspell'] . " -a --lang=". $this->lang;
$this->cmd = "cat ". $this->tmpfile ." | " . $config['tinypspellshell.aspell'] . " -a --lang=". $this->lang;
}
// Returns array with bad words or false if failed.
@ -44,6 +44,7 @@ class TinyPspellShell {
}
$data = shell_exec($this->cmd);
@unlink($this->tmpfile);
$returnData = array();
$dataArr = preg_split("/\n/", $data, -1, PREG_SPLIT_NO_EMPTY);
@ -73,6 +74,7 @@ class TinyPspellShell {
die("Error opening tmp file.");
$data = shell_exec($this->cmd);
@unlink($this->tmpfile);
$returnData = array();
$dataArr = preg_split("/\n/", $data, -1, PREG_SPLIT_NO_EMPTY);
@ -97,4 +99,4 @@ class TinyPspellShell {
// Setup classname, should be the same as the name of the spellchecker class
$spellCheckerConfig['class'] = "TinyPspellShell";
?>
?>