Ver código fonte

Fixing deletion of events from calendar theme

pull/129/head
Benjamin Southall 6 anos atrás
pai
commit
7b9bad7382
2 arquivos alterados com 8 adições e 3 exclusões
  1. +3
    -2
      templates/themes/calendar/calendar.html
  2. +5
    -1
      templates/themes/calendar/calendarpost.php

+ 3
- 2
templates/themes/calendar/calendar.html Ver arquivo

@@ -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");


+ 5
- 1
templates/themes/calendar/calendarpost.php Ver arquivo

@@ -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);


Carregando…
Cancelar
Salvar