From f0485adef1cd9b0d65bcbdd25bc546a2dff4095b Mon Sep 17 00:00:00 2001
From: alecpl <alec@alec.pl>
Date: Wed, 28 Apr 2010 08:24:48 -0400
Subject: [PATCH] - Fix folder subscription checking (#1486684) - Fix INBOX appears (sometimes) twice in mailbox list (#1486672)

---
 program/js/tiny_mce/plugins/spellchecker/classes/PSpell.php |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/program/js/tiny_mce/plugins/spellchecker/classes/PSpell.php b/program/js/tiny_mce/plugins/spellchecker/classes/PSpell.php
index 45448d0..6aa255c 100755
--- a/program/js/tiny_mce/plugins/spellchecker/classes/PSpell.php
+++ b/program/js/tiny_mce/plugins/spellchecker/classes/PSpell.php
@@ -37,7 +37,7 @@
 		$words = pspell_suggest($this->_getPLink($lang), $word);
 
 		for ($i=0; $i<count($words); $i++)
-			$words[$i] = utf8_encode($words[$i]);
+			$words[$i] = $words[$i];
 
 		return $words;
 	}

--
Gitblit v1.9.1