Index: openacs-4/packages/wp-slim/www/attach.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/wp-slim/www/attach.tcl,v diff -u -r1.8 -r1.9 --- openacs-4/packages/wp-slim/www/attach.tcl 28 Aug 2003 09:42:00 -0000 1.8 +++ openacs-4/packages/wp-slim/www/attach.tcl 22 Sep 2003 18:41:27 -0000 1.9 @@ -31,12 +31,14 @@ set exception_text "" if { $tmp_size == 0 } { - append exception_text "
  • You haven't uploaded a file.\n" + append exception_text "
  • [_ wp-slim.lt_You_havent_uploaded_a]\n" incr exception_count } if { ![empty_string_p [ad_parameter MaxAttachmentSize "comments"]] && $tmp_size > [ad_parameter MaxAttachmentSize "comments"] } { - append exception_text "
  • Your file is too large. The publisher of [ad_system_name] has chosen to limit attachments to [util_commify_number [ad_parameter MaxAttachmentSize "comments"]] bytes.\n" + set system_name [ad_system_name] + set bytes [util_commify_number [ad_parameter MaxAttachmentSize "comments"]] + append exception_text "
  • [_ wp-slim.lt_Your_file_is_too_larg]\n" incr exception_count } @@ -61,11 +63,7 @@ } on_error { # most likely a duplicate name, double click, or non-image file uploaded as an inline image. - ad_return_complaint 1 "There was an error trying to add your content. Most likely causes you've -

    Here is the actual error message:

    $errmsg
    " + ad_return_complaint 1 "[_ wp-slim.lt_There_was_an_error_tr]
    $errmsg
    " ad_script_abort }