*** empty log message ***

svn path=/trunk/boinc/; revision=4214
This commit is contained in:
David Anderson 2004-09-21 18:57:30 +00:00
parent c95f54e510
commit 9666a699b2
2 changed files with 10 additions and 4 deletions

View File

@ -17487,7 +17487,7 @@ Lana 20 Sept 2004
- Fixed create_work bug. Copy input text files to the download directories
tools/
backend_lib.C
backend_lib.C
Rom 20 Sept 2004
- NEWGUI: Refactor all view logic to accommodate the new task based interface.
@ -17497,3 +17497,9 @@ Rom 20 Sept 2004
clientgui/
<Numerous Files Have Been Changed>
David 21 Sept 2004
- fixed profile image upload (from Matt)
html/inc/
profile.inc

View File

@ -58,11 +58,11 @@ function show_profile_creation_page($user) {
function setup_form($user, $profile) {
// <form action=", $_SERVER['PHP_SELF'], " method=\"POST\", ENCTYPE=\"multipart/form-data\">
// <form action=", $_SERVER['PHP_SELF'], " method=\"POST\">
// multipart/form-data doesn't always work (?)
echo "
<form action=", $_SERVER['PHP_SELF'], " method=\"POST\">
<form action=", $_SERVER['PHP_SELF'], " method=\"POST\", ENCTYPE=\"multipart/form-data\">
";
}
@ -206,7 +206,7 @@ function process_create_results($user, $profile) {
if (is_uploaded_file($_FILES['picture']['tmp_name'])) {
$hasPicture = true;
/*
/*
echo "<br>Name: " . $_FILES['picture']['name'];
echo "<br>Type: " . $_FILES['picture']['type'];
echo "<br>Size: " . $_FILES['picture']['size'];