Well, assuming you know PHP and how vB adds an avatar, it shouldn't be super hard.
Here's an action file that _may_ work on 0.95b. Add it through the action manager.
EDIT: Removed some uCS 1.0.x only code. It needs a new template as well.
Make a new template: uttstore_inputs_file
HTML Code:
<input type="hidden" name="MAX_FILE_SIZE" value="$field[maxsize]" /><fieldset style="text-align: right;"><legend>$field[topphrase]</legend>
<div style="float: left;">$field[mainphrase]</div> <input type="file" name="$name" value="$value" size="$field[size]"></fieldset>
This action probably has a few bugs though, so don't think that just because I am posting it that it is stable.
EDIT2: You also need to change this in includes/functions_uttstore.php:
Find:
PHP Code:
function uttstore_globalize_fields($fields) {
// Because damnit, I am about to gouge my eyes out.
$_FIELD = $_POST['_FIELDS'];
foreach ($fields as $name => $field) {
if ($field['datatype'] == 'INT') {
// integer value - run intval() on data
$_FIELDS["$name"] = intval($_FIELD[$name]);
} elseif ($field['datatype'] == 'POINTS') {
$_FIELDS["$name"] = uttpoints_number_format($_FIELD[$name]);
} elseif ($field['datatype'] == 'STR_NOHTML') {
// html-safe string - trim and htmlspecialchars data
$_FIELDS["$name"] = htmlspecialchars_uni(trim($_FIELD[$name]));
} elseif ($field['datatype'] == 'STR') {
// string - trim data
$_FIELDS["$name"] = trim($_FIELD[$name]);
} else {
$_FIELDS["$name"] = $_FIELD[$name];
}
}
return $_FIELDS;
}
Replace with:
PHP Code:
function uttstore_globalize_fields($fields) {
// Now with the added bonus of working!
$_FIELD = $_POST['_FIELDS'];
// Some backported code from 1.0.x is in here.
foreach ($fields as $name => $field) {
if ($field['bypassfields'] != true) {
$data = $_FIELD[$name];
} else {
$data = $_POST[$name];
}
if ($field['datatype'] == 'INT') {
// integer value - run intval() on data
$_FIELDS["$name"] = intval($data);
} elseif ($field['datatype'] == 'POINTS') {
$_FIELDS["$name"] = uttpoints_number_format($data);
} elseif ($field['datatype'] == 'STR_NOHTML') {
// html-safe string - trim and htmlspecialchars data
$_FIELDS["$name"] = htmlspecialchars_uni(trim($data));
} elseif ($field['datatype'] == 'STR') {
// string - trim data
$_FIELDS["$name"] = trim($data);
} else {
$_FIELDS["$name"] = $data;
}
}
return $_FIELDS;
}