Skip to content

Commit

Permalink
(Cal) Fix bug for deleting parts of series dates
Browse files Browse the repository at this point in the history
  • Loading branch information
jmrauen committed Mar 23, 2015
1 parent 253e8d0 commit a5e38a0
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions docs/CHANGELOG.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,6 @@ v2.54b
- (CS) Fehler bei Agenda beim Herausnehmen von Uhrzeiten vor einem Event behoben.
- (CS) Fehler bei Agenda wenn man eine Agenda kopiert hat wies der alte Integrationsmerkmale auf.
- Fehler beim Löschen von Stammdaten behoben

v2.54c
- (Cal) Problem beim Löschen von Serientermine von "diesen und zukünfitge" behoben.
4 changes: 2 additions & 2 deletions system/churchcal/calendar.js
Original file line number Diff line number Diff line change
Expand Up @@ -935,7 +935,7 @@ function renderEditEvent(myEvent, origEvent, isSeries, editSeries, func) {
origEvent.prooveEventChangeImpact(newEvent, null, null, null, function(ok) {
if (ok) {
elem.dialog("close");
newEvent.saveEvent(newEvent);
newEvent.save();
}
});
}
Expand Down Expand Up @@ -1022,7 +1022,7 @@ function delEventFormular(event, func, currentDate) {
deleteNewerExceptionsAndAdditions(newEvent, d, false);
elem.dialog("close");
event.prooveEventChangeImpact(newEvent, null, null, null, function(ok) {
if (ok) event.saveEvent(newEvent);
if (ok) newEvent.save();
});
});
}
Expand Down
2 changes: 1 addition & 1 deletion system/includes/constants.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* constants to use anywhere
*/
// To prevent Browser caching old versions of JS and CSS Files
define('JS_VERSION', '25402');
define('JS_VERSION', '25403');

//TODO: next two maybe not needed?
define('SITES', 'sites');
Expand Down

0 comments on commit a5e38a0

Please sign in to comment.