In file /administrator/components/com_phocadownload/helpers/phocadownload.php on line 306 there is a " to much, which prevents creating of a correct drop-down list.
It was:
Code: Select all
$select .= '<option value="'.$valueOption['id'].'" '.$selected.' ">'.JText::_($valueOption['value']).'</option>' . "\n";
and it should be
Code: Select all
$select .= '<option value="'.$valueOption['id'].'" '.$selected.'>'.JText::_($valueOption['value']).'</option>' . "\n";
Mind the " symbol, just in front of >'.JText::
Now the drop-down lists are made correctly, so the option is available for change again.