"An array of items to put into the dropdown list... they should be $key=>$value pairs"
However, when I look at the code in `modform.inc.php`:
Code: Select all
$text .= '<option value="'.$value.'"';
if ($selectedindex == $count || $selectedvalue == $value)
{
$text .= ' ' . 'selected="selected"';
}
$text .= '>';
$text .= $key;
$text .= '</option>';
Code: Select all
$list = array('Some text' => '1');