Index: openacs-4/packages/file-manager/www/file-edit-2.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/file-manager/www/file-edit-2.tcl,v diff -u -N -r1.4 -r1.5 --- openacs-4/packages/file-manager/www/file-edit-2.tcl 18 Sep 2002 12:12:43 -0000 1.4 +++ openacs-4/packages/file-manager/www/file-edit-2.tcl 1 Sep 2003 23:21:27 -0000 1.5 @@ -49,12 +49,11 @@ set user_id [ad_verify_and_get_user_id] db_1row user_info { - select first_names || ' ' || last_name as name, - email + select pe.first_names || ' ' || pe.last_name as name, + pa.email from persons pe, parties pa where pe.person_id=:user_id and pa.party_id=pe.person_id } - db_release_unused_handles # add the file (just in case) and commit the change vc_add $path Index: openacs-4/packages/file-manager/www/file-upload-2.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/file-manager/www/file-upload-2.tcl,v diff -u -N -r1.5 -r1.6 --- openacs-4/packages/file-manager/www/file-upload-2.tcl 15 Jan 2003 09:23:39 -0000 1.5 +++ openacs-4/packages/file-manager/www/file-upload-2.tcl 1 Sep 2003 23:21:27 -0000 1.6 @@ -18,12 +18,12 @@ # Make sure the incoming filename is valid if ![fm_valid_filename_p $title] { - ad_return_complaint "
  • Invalid file name (no spaces, & or /'s)" + ad_return_complaint "Error" "
  • Invalid file name (no spaces, & or /'s)" ad_script_abort } if {![empty_string_p $title] && [empty_string_p [file ext $title]]} { - ad_return_complaint " + ad_return_complaint "Error" "
  • The title you supply must have one of the following extensions:
    [ad_parameter Extensions file-manager]" ad_script_abort @@ -107,17 +107,15 @@ set user_id [ad_verify_and_get_user_id] db_1row user_info { - select first_names || ' ' || last_name as name, - email - from users - where user_id = :user_id + select pe.first_names || ' ' || pe.last_name as name, + pa.email + from persons pe, parties pa + where pe.person_id=pa.party_id and pa.party_id = :user_id } # add the file (just in case) and commit the change vc_add $path vc_commit $path "$name ($email) - $message" - - db_release_unused_handles } ad_returnredirect "file-list?path=[file dirname $path]"