Link14716
03-16-2005, 12:32 AM
Here is the custom avatar action from 1.0.0 made to work on 0.95. It should work correctly, if you already installed it from the other thread, then upload this new version of action.customavatar.php.
Make a new template: uttstore_inputs_file:
<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>
In your uttstore_standard_inputs template:
Find: <form action="ushop.php" method="post">
Replace with: <form action="ushop.php" method="post" enctype="multipart/form-data">
In includes/functions_uttstore.php:
Find:
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:
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;
}
Finish this by making a new action for uttstore/action.customavatar.php (and obviously upload it to the right location).
Make a new template: uttstore_inputs_file:
<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>
In your uttstore_standard_inputs template:
Find: <form action="ushop.php" method="post">
Replace with: <form action="ushop.php" method="post" enctype="multipart/form-data">
In includes/functions_uttstore.php:
Find:
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:
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;
}
Finish this by making a new action for uttstore/action.customavatar.php (and obviously upload it to the right location).