Opened 3 years ago
Last modified 2 years ago
#14737 new defect (bug)
Tinymce Googlespell: Json return wrongly encoded special char
| Reported by: |
|
Owned by: | |
|---|---|---|---|
| Priority: | normal | Milestone: | Awaiting Review |
| Component: | TinyMCE | Version: | 3.0.1 |
| Severity: | normal | Keywords: | reporter-feedback |
| Cc: |
Description
The Json returned by the googlespeel method is broken.
I don't have time to create a patch now:
SO this is it in the file GoogleSpell.php:
original:
(line 41,42)
if (count($matches) > 0)
$sug = explode("\t", utf8_encode($this->_unhtmlentities($matches[0][4])));
Fix:
(line 41,42)
if (count($matches) > 0)
$sug = explode("\t", $this->_unhtmlentities($matches[0][4]));
Attachments (1)
Change History (2)
comment:1
koopersmith
— 2 years ago
- Keywords reporter-feedback added; tinymce spellcheck google special char accent removed
Note: See
TracTickets for help on using
tickets.
Can you provide some examples that will trigger the bug?