Browse Source

Fixing deletion of events from calendar theme

pull/40/head
Benjamin Southall 7 years ago
parent
commit
7b9bad7382
  1. 5
      templates/themes/calendar/calendar.html
  2. 6
      templates/themes/calendar/calendarpost.php

5
templates/themes/calendar/calendar.html

@ -130,7 +130,7 @@
}
$.ajax({
url: 'calendarpost.php',
data: 'type=update&title='+ event.title+'&description='+ event.description + '&start='+ start +'&end='+ end +'&id='+ event.id ,
data: 'type=update&title='+ event.title+'&description='+ event.description + '&start='+ start +'&end='+ end +'&id='+ event.id +'&color=' + event.color +'&url=' + event.url ,
type: "POST",
success: function(json) {
alert("Updated Successfully");
@ -148,6 +148,7 @@
$('#calendar').fullCalendar('removeEvents', event.id);
alert("Updated Successfully");}
});
return false;
}
},
@ -172,7 +173,7 @@
}
$.ajax({
url: 'calendarpost.php',
data: 'type=update&title='+ event.title+ '&description='+ event.description + '&start='+ start +'&end='+ end +'&id='+ event.id ,
data: 'type=update&title='+ event.title+'&description='+ event.description + '&start='+ start +'&end='+ end +'&id='+ event.id +'&color=' + event.color +'&url=' + event.url ,
type: "POST",
success: function(json) {
alert("Updated Successfully");

6
templates/themes/calendar/calendarpost.php

@ -24,7 +24,9 @@ $method = $_SERVER['REQUEST_METHOD'];
break;
case "delete":
$id = $_POST['id'];
$query = query("DELETE from calendar_events WHERE id = :id") or error(db_error());
$query = prepare("DELETE from calendar_events WHERE id = :id");
$query->bindValue(':id', $id);
$query->execute() or error(db_error($query));
break;
case "update":
$id = $_POST['id'];
@ -32,6 +34,8 @@ $method = $_SERVER['REQUEST_METHOD'];
$description = $_POST['description'];
$start = $_POST['start'];
$end = $_POST['end'];
$color = $_POST['color'];
$url = $_POST['url'];
$query = prepare(" UPDATE calendar_events SET title = :title, description = :description, start = :start, end = :end, url = :url, color =:color WHERE id = :id");
$query->bindValue(':id', $id);
$query->bindValue(':title', $title);

Loading…
Cancel
Save