Index: openacs-4/packages/contacts/lib/email.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/contacts/lib/email.tcl,v diff -u -r1.25 -r1.26 --- openacs-4/packages/contacts/lib/email.tcl 15 May 2006 15:46:43 -0000 1.25 +++ openacs-4/packages/contacts/lib/email.tcl 18 May 2006 13:37:58 -0000 1.26 @@ -111,12 +111,16 @@ if { [exists_and_not_null file_ids] } { set files [list] foreach file $file_ids { - set file_title [lang::util::localize [content::item::get_title -item_id $file]] + set file_item_id [content::revision::item_id -revision_id $file] + if {$file_item_id eq ""} { + set file_item_id $file + } + set file_title [lang::util::localize [content::item::get_title -item_id $file_item_id]] if {[empty_string_p $file_title]} { set file_title "empty" } if { $tracking_p } { - lappend files "$file_title " + lappend files "$file_title " } else { lappend files "$file_title " }