Index: openacs-4/packages/bug-tracker/tcl/bug-tracker-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/bug-tracker/tcl/bug-tracker-procs.tcl,v diff -u -r1.46 -r1.47 --- openacs-4/packages/bug-tracker/tcl/bug-tracker-procs.tcl 24 Jun 2015 09:29:44 -0000 1.46 +++ openacs-4/packages/bug-tracker/tcl/bug-tracker-procs.tcl 24 Jun 2015 10:45:16 -0000 1.47 @@ -758,12 +758,12 @@ set root_keyword_id [bug_tracker::conn project_root_keyword_id -package_id $package_id] foreach { category_type categories } $spec { - set category_type_id [cr::keyword::get_keyword_id \ + set category_type_id [content::keyword::get_keyword_id \ -parent_id $root_keyword_id \ -heading $category_type] if { $category_type_id eq "" } { - set category_type_id [cr::keyword::new \ + set category_type_id [content::keyword::new \ -parent_id $root_keyword_id \ -heading $category_type] } @@ -776,12 +776,12 @@ set default_p 0 } - set category_id [cr::keyword::get_keyword_id \ + set category_id [content::keyword::get_keyword_id \ -parent_id $category_type_id \ -heading $category] if { $category_id eq "" } { - set category_id [cr::keyword::new \ + set category_id [content::keyword::new \ -parent_id $category_type_id \ -heading $category] }