Summary | IMP traditional mode links to "Hide deleted" and "Purge deleted" dows not work |
Queue | IMP |
Queue Version | 5.0.16 |
Type | Bug |
State | Duplicate |
Priority | 2. Medium |
Owners | |
Requester | jcblanco (at) fi (dot) upm (dot) es |
Created | 12/21/2011 (4922 days ago) |
Due | 12/21/2011 (4922 days ago) |
Updated | 12/21/2011 (4922 days ago) |
Assigned | |
Resolved | 12/21/2011 (4922 days ago) |
Github Issue Link | |
Github Pull Request | |
Milestone | |
Patch | No |
State ⇒ Duplicate
Bug #10860State ⇒ Unconfirmed
Priority ⇒ 2. Medium
Type ⇒ Bug
Summary ⇒ IMP traditional mode links to "Hide deleted" and "Purge deleted" dows not work
Due ⇒ 12/21/2011
Queue ⇒ IMP
Milestone ⇒
Patch ⇒ No
the two rightside links "Hide deleted" and "Purge deleted" does not
work any more.
Debugging the sources I think that I've found the problem in the las
modificacions of clickHandler function, in previous versions the call
to e.stop() is done in each option of the if, now is done for all
classnames except "nosort", the n is called for purgeAction and
hideAcction classnames that causes the problem, if I change the if
that conditions the e.stop() call to
if (!elt.hasClassName('nosort') &&
!elt.hasClassName('hideAction') &&
!elt.hasClassName('purgeAction')) {
All seems to works fine again but I don't know if may be other action
classnames with the same problem