Commit 6a643da9 authored by Frank Bergmann's avatar Frank Bergmann

- acs_sc::impl::get_id:

  Now returns an empty value instead of causing an error
parent 9956713a
......@@ -148,9 +148,9 @@ ad_proc -public acs_sc::impl::get_id {
if the contract is not specified.
} {
if {[exists_and_not_null contract]} {
return [db_string select_impl_id_with_contract {}]
return [db_string select_impl_id_with_contract {} -default ""]
} else {
return [db_string select_impl_id {}]
return [db_string select_impl_id {} -default ""]
}
}
......
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