Ok... well I uploaded the original action.donate and functions_uttstore and everything is back working correctly again..
Only thing I could think is theres one variation with your instructions and my file:
This is what it looks like for me (The part you wanted changed) - action.donate.php:
'points' => array(
'topphrase' => 'Input $vbphrase[ucs_points]',
'mainphrase' => '$vbphrase[uttstore_inputs_points_donate]',
'type' => 'input',
'size' => 10,
'value' => '',
'chidden' => 'standard',
'cdisplay' => 'standard',
'cphrase' => '$vbphrase[ucs_points]',
'datatype' => "STR_NOHTML",
'eval' => '. . .'
)
And yours in the install file says it should look like:
'points' => array(
'topphrase' => 'Input $vbphrase[ucs_points]',
'mainphrase' => '$vbphrase[uttstore_inputs_points_donate]',
'type' => 'input',
'size' => 10,
'value' => '',
'chidden' => 'standard',
'cdisplay' => 'standard',
'cphrase' => '$vbphrase[ucs_points]',
'datatype' => "POINTS",
'eval' => '. . .'
)
So the datatypes are different... not sure if that would affect anything
|