Summary | Spellchecking not working in compose message for any language |
Queue | Horde Framework Packages |
Queue Version | Git master |
Type | Bug |
State | Resolved |
Priority | 2. Medium |
Owners | slusarz (at) horde (dot) org |
Requester | kmak (at) ccf (dot) auth (dot) gr |
Created | 10/05/2012 (4667 days ago) |
Due | |
Updated | 10/15/2012 (4657 days ago) |
Assigned | |
Resolved | 10/06/2012 (4666 days ago) |
Github Issue Link | |
Github Pull Request | |
Milestone | |
Patch | No |
commit af22192b126dea51c5b973f3b408c90b310a8d88
Author: Michael M Slusarz <slusarz@horde.org>
Date: Fri Oct 5 18:53:17 2012 -0600
[mms] Send spellcheck parameters using AJAX object, not in URL
(
Bug #11467).framework/Core/js/spellchecker.js | 12 ++++++------
framework/Core/package.xml | 2 ++
2 files changed, 8 insertions(+), 6 deletions(-)
http://git.horde.org/horde-git/-/commit/af22192b126dea51c5b973f3b408c90b310a8d88
locale variable spellchecking stops working again even if you set it
back to English with locale en_US
locale variable spellchecking stops working again even if you set it
back to English with locale en_US
Queue ⇒ Horde Framework Packages
Priority ⇒ 2. Medium
State ⇒ Resolved
Version ⇒ Git master
commit af22192b126dea51c5b973f3b408c90b310a8d88
Author: Michael M Slusarz <slusarz@horde.org>
Date: Fri Oct 5 18:53:17 2012 -0600
[mms] Send spellcheck parameters using AJAX object, not in URL
(
Bug #11467).framework/Core/js/spellchecker.js | 12 ++++++------
framework/Core/package.xml | 2 ++
2 files changed, 8 insertions(+), 6 deletions(-)
http://git.horde.org/horde-git/-/commit/af22192b126dea51c5b973f3b408c90b310a8d88
Priority ⇒ 3. High
State ⇒ Unconfirmed
Patch ⇒ No
Milestone ⇒
Queue ⇒ Horde Base
Summary ⇒ Spellchecking not working in compose message for any language
Type ⇒ Bug
I have pined the bug somehow.
In file Horde/Core/Ajax/Imple/SpellChecker.php line 90
$input = $vars->get($vars->input);
$vars has the following value:
Horde_Variables Object
(
[_expected:protected] => Array
(
)
[_sanitized:protected] =>
[_vars:protected] => Array
(
[token] => eff6U9mA4DdQbo55eVSiCsA
[app] => imp
[imple] => Horde_Core_Ajax_Imple_SpellChecker
[input] => composeMessage/locale=en_US
[composeMessage] => mooorning
)
)
So $vars->input has the value "composeMessage/locale=en_US"
so $input is returned as false because $vars->get can't find the
requested key in the variables .......
In Horde3 i found that the variables are split with '/' , here i
couldn't find something like this.
Thank you in advance.