News:

You may pay someone to create your store, or you visit our seminar and become a professional yourself with the silver certification

Main Menu

Errors in classes/ps_userfield.php linking labels

Started by doorknob, August 26, 2008, 03:13:19 AM

Previous topic - Next topic

doorknob

The labels for 'select' and 'multicheckbox' type fields do not match the ids of the corresponding '<input' fields. There may be issues with other types of field, I have only tried these types (and 'delimiter'). To resolve the problems, I changed line 355 from:
        echo '<label for="'.$field->name.'_field">'.$field->title.'</label>';

to
        echo '<label for="'.$field->name;
if( $field->type != 'select' ) echo '_field';
if( $field->type == 'multicheckbox' ) echo '1';
echo '">'.$field->title.'</label>';


Regards
Phil