| 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 | 2/15/16 (3696 days ago) |
| Due | 02/15/2016 (3696 days ago) |
| Updated | 10/20/17 (3083 days ago) |
| Assigned | 2/16/16 (3695 days ago) |
| Resolved | 2/17/16 (3694 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.