I was wondeirng if this was possible.
I have values in the admincp, seprated using line breaks (or by pressing enter)
e.g.
Monday
Tuesday
in the useradmin_edit_column1 plugin
I have this code
PHP Code:
print_select_row('My Day', 'user[days]', explode("\n",trim($vbulletin->options['days'])), $user[days]);
I easily get the dropdown menu with all the days, however the one the user has, is not selected.
e.g.. I have the day "Monday" in my $user[days] field(contains the actual value "Monday"), but the above doesnt select it, it only lists all the days.
thanks