Minor changes.

svn path=/trunk/boinc/; revision=1771
This commit is contained in:
David Anderson 2003-07-22 20:47:57 +00:00
parent 49dd9daea5
commit f7ca3d684c
1 changed files with 3 additions and 4 deletions

View File

@ -181,10 +181,6 @@ function process_results() {
exit(); exit();
} }
// TODO: Having the delete checkbox and pic file form might confuse users.
// Should figure out a better way to handle this. Also might want to
// present some sort of verification dialog (javascript).
if ($delete_pic == "on") { if ($delete_pic == "on") {
delete_user_pictures($profile_info['userid']); delete_user_pictures($profile_info['userid']);
@ -332,6 +328,9 @@ Your profile was successfully entered into our database.<br><br>
// $numToDisplay indicates how many profiles to display in this table // $numToDisplay indicates how many profiles to display in this table
// $cols indicates how many profile summaries should be written per row // $cols indicates how many profile summaries should be written per row
// $descriptor is an optional file descriptor to write the table to. // $descriptor is an optional file descriptor to write the table to.
// $pathMod is an optional path which is prepended to the image path. Useful
// when the image path is not relative to the directory from which this
// function is called.
function show_user_table($members, $offset, $numToDisplay, $cols, $descriptor=null, $pathMod=null) { function show_user_table($members, $offset, $numToDisplay, $cols, $descriptor=null, $pathMod=null) {