Summary | Typo error in kronolith.js. Could not delete events from web |
Queue | Kronolith |
Queue Version | FRAMEWORK_5_2 |
Type | Bug |
State | Resolved |
Priority | 2. Medium |
Owners | mrubinsk (at) horde (dot) org |
Requester | juan (at) inti (dot) gob (dot) ar |
Created | 02/15/2016 (3482 days ago) |
Due | 02/15/2016 (3482 days ago) |
Updated | 10/20/2017 (2869 days ago) |
Assigned | 02/16/2016 (3481 days ago) |
Resolved | 02/17/2016 (3480 days ago) |
Github Issue Link | |
Github Pull Request | |
Milestone | |
Patch | Yes |
commit 7b8b26c01903bad77dac68cac2e72dc9e119f9e0
Author: Michael J Rubinsky <mrubinsk@horde.org>
Date: Tue, 16 Feb 2016 20:21:46 -0500
Bug: 14256Fix typo preventing deletion of events from dynamic view.M js/kronolith.js
https://github.com/horde/kronolith/commit/7b8b26c01903bad77dac68cac2e72dc9e119f9e0
State ⇒ Resolved
commit 4a64065d261ef9f76f8565f4ed9fb354547dfe58
Author: Michael J Rubinsky <mrubinsk@horde.org>
Date: Tue Feb 16 20:19:38 2016 -0500
Bug: 14256Fix typo preventing deletion of events from dynamic view.kronolith/js/kronolith.js | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
http://github.com/horde/horde/commit/4a64065d261ef9f76f8565f4ed9fb354547dfe58
Priority ⇒ 2. Medium
State ⇒ Assigned
Assigned to Michael Rubinsky
Priority ⇒ 3. High
Type ⇒ Bug
Summary ⇒ Typo error in kronolith.js. Could not delete events from web
Due ⇒ 02/15/2016
Queue ⇒ Kronolith
Milestone ⇒
Patch ⇒ Yes
State ⇒ Unconfirmed
if ((Kronolith.conf.confirm_delete || this.recurs) &&
!$this.delete_verified) {
and should say:
if ((Kronolith.conf.confirm_delete || this.recurs) && !this.delete_verified) {
there is a '$' sign in !$this.delete_verified that is throwing an
error. Because of this the delete buttons doesnt work.