fixed add commet event

This commit is contained in:
daniel 2023-04-10 10:35:47 +02:00
parent 538f8266dc
commit ba1f299440
1 changed files with 8 additions and 11 deletions

View File

@ -465,22 +465,19 @@ function event_comment(current_event) {
return false;
}
var params = [];
params.push("page=include/ajax/events");
params.push("add_comment=1");
if (event.event_rep > 0) {
params.push("event_id=" + event.max_id_evento);
} else {
params.push("event_id=" + event.id_evento);
}
params.push("comment=" + comment);
params.push("server_id=" + event.server_id);
var params = {
page: "include/ajax/events",
add_comment: 1,
event_id: event.event_rep > 0 ? event.max_id_evento : event.id_evento,
comment: comment,
server_id: event.server_id
};
$("#button-comment_button").attr("disabled", "disabled");
$("#response_loading").show();
jQuery.ajax({
data: params.join("&"),
data: params,
type: "POST",
url: getUrlAjax(),
dataType: "html",