Index: openacs-4/packages/bug-tracker/tcl/bug-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/bug-tracker/tcl/bug-procs.tcl,v diff -u -r1.45 -r1.46 --- openacs-4/packages/bug-tracker/tcl/bug-procs.tcl 26 Jun 2018 19:31:20 -0000 1.45 +++ openacs-4/packages/bug-tracker/tcl/bug-procs.tcl 17 Jul 2018 11:42:26 -0000 1.46 @@ -107,7 +107,7 @@ set comment_content $description set comment_format $desc_format - if { (![info exists creation_date] || $creation_date eq "") } { + if { ![info exists creation_date] || $creation_date eq "" } { set creation_date [db_string select_sysdate {}] } @@ -280,7 +280,7 @@ # Update the keywords foreach {category_id category_name} [bug_tracker::category_types] { - if { ([info exists row($category_id)] && $row($category_id) ne "") } { + if { [info exists row($category_id)] && $row($category_id) ne "" } { content::keyword::item_assign -item_id $bug_id -keyword_id $row($category_id) } # LARS: