Commit 33f12f20 authored by Frank Bergmann's avatar Frank Bergmann

- CSV Risk Import:

  Fixed bad log messages
parent c0d2a4ef
......@@ -220,13 +220,13 @@ foreach csv_line_fields $values_list_of_lists {
# Status is a required field
if {"" == $risk_status_id} {
if {$ns_write_p} { ns_write "<li><font color=brown>Warning: Didn't find risk status '$risk_status', using default status 'Open'</font>\n" }
if {$ns_write_p} { ns_write "<li><font color=brown>Warning: Didn't find risk status '$risk_status_id', using default status 'Open'</font>\n" }
set risk_status_id [im_risk_status_open]
}
# Type is a required field
if {"" == $risk_type_id} {
if {$ns_write_p} { ns_write "<li><font color=brown>Warning: Didn't find risk type '$risk_type', using default type 'Other'</font>\n" }
if {$ns_write_p} { ns_write "<li><font color=brown>Warning: Didn't find risk type '$risk_type_id', using default type 'Other'</font>\n" }
set risk_type_id [im_risk_type_risk]
}
......
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