rincewind456,
Your function has two parameters, but the original has five (although it seems that only the first 4 are used here. The first is a language define (the label for the field), the second, (and I'm guessing here...) is the field name and the third is the field to insert the value into. The fourth is the width of the field.
So for each field that I want to change, how would I set up the function? I'm assuming that the first part should follow the old format?, but what about the 2nd & 3rd parts?
$this->option_block(_MY_FIELD_LANGUAGE_INCLUDE,'myfieldname',$file->myfieldname,25);
Where do I need to set up the array for all of the values for each drop down list? In the part of the script that sets up the file details prior to upload, all of the fields are listed like:
$this->fileInputBox(_ROUTE_START_INFO,'routestartinfo',$file->routestartinfo,25); $this->SubHeadingLine(_SUBTITLE_BLANK, _LATLONGHEADSUP);
$this->fileInputBox(_LATITUDE_START,'latitudestart',$file->latitudestart,25);
$this->fileInputBox(_LONGITUDE_START,'longitudestart',$file->longitudestart,25) $this->fileInputBox(_ROUTE_TYPE,'routetype',$file->routetype,10);
Thanks for this...
Simon