Commit 342c24cd authored by Frank Bergmann's avatar Frank Bergmann

Summary: - Timesheet2-task - task-action.tcl:

   Not updating start- and end date if they are null
parent a5633a09
......@@ -165,12 +165,6 @@ switch $action {
set start_date = '$start_date_ansi'
where project_id = :save_task_id
"
} else {
db_dml save_project_start_date "
update im_projects
set start_date = NULL
where project_id = :save_task_id
"
}
# Writing End Date
......@@ -180,12 +174,6 @@ switch $action {
set end_date = '$end_date_ansi'
where project_id = :save_task_id
"
} else {
db_dml save_project_end_date "
update im_projects
set end_date = NULL
where project_id = :save_task_id
"
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment