From db22aa691fddfed82376ff0f9e7ae15d3d230041 Mon Sep 17 00:00:00 2001 From: tanghucheng Date: Thu, 20 Jul 2023 09:07:08 +0800 Subject: [PATCH] * Fix code review issues. --- module/programplan/view/gantt.html.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/programplan/view/gantt.html.php b/module/programplan/view/gantt.html.php index 98135c87b7..bab3813cc5 100755 --- a/module/programplan/view/gantt.html.php +++ b/module/programplan/view/gantt.html.php @@ -807,7 +807,7 @@ $(function() var month = ev.date.getMonth() + 1; var day = ev.date.getUTCDate(); var formattedDate = year + '-' + (month < 10 ? '0' : '') + month + '-' + (day < 10 ? '0' : '') + day; - var taskID = id; + $.post(createLink('review', 'ajaxChangeTRDeadline'), {'deadline' : formattedDate, 'id' : reviewID , 'projectID' : projectID}, function() { location.reload();