Summary | compose_spellcheck broken? |
Queue | IMP |
Queue Version | 4.1 |
Type | Bug |
State | Duplicate |
Priority | 1. Low |
Owners | |
Requester | matthew.dunham (at) ic (dot) ucsb (dot) edu |
Created | 03/18/2006 (7130 days ago) |
Due | |
Updated | 03/18/2006 (7130 days ago) |
Assigned | |
Resolved | 03/18/2006 (7130 days ago) |
Github Issue Link | |
Github Pull Request | |
Milestone | |
Patch | No |
State ⇒ Duplicate
Bug 3589.compose spellcheck feature.
the first codeblock in _getActionID() rewrites $aid and returns
control immediately thereafter. the next codeblock is where the auto
spellcheck is initiated, but execution never reaches this block when
aid = $send_message
State ⇒ Unconfirmed
Priority ⇒ 1. Low
Type ⇒ Bug
Summary ⇒ compose_spellcheck broken?
Queue ⇒ IMP
compose spellcheck feature.
the first codeblock in _getActionID() rewrites $aid and returns
control immediately thereafter. the next codeblock is where the auto
spellcheck is initiated, but execution never reaches this block when
aid = $send_message
function _getActionID()
{
if ($aid = Util::getFormData('actionID')) {
return str_replace('btn_', '', $aid);
}
if (Util::getFormData('btn_send_message')) {
/* Alter the 'Send Message' action if the "Spell check before sending
* message?" preference has been enabled. */
....