diff --git a/module/programplan/view/gantt.html.php b/module/programplan/view/gantt.html.php
index 72fa912baf..6dfd9b1450 100755
--- a/module/programplan/view/gantt.html.php
+++ b/module/programplan/view/gantt.html.php
@@ -693,6 +693,12 @@ $(function()
});
});
+ gantt.attachEvent("onBeforeTaskMove", function(id, mode, e)
+ {
+ task = gantt.getTask(id);
+ if(task.type == 'point') return false;
+ });
+
var isGanttExpand = false;
var delayTimer = null;
var handleFullscreen = function()