Hi All,

I think I have found a bug in Zend_Form_Element_Select (ZF 1.9.4), I have some multioptions (which are monetary values), If I add elements like so:

$prices = array([0]=>'20000'........etc

foreach ($prices as $price)........etc

$minprice->addMultiOption($price,'£'.number_format($price));

The select box comes out with the correct amount of options, with the values set, but nothing between the <option> tags and nothing on the label attribute!

Changing the £ to a htmlentity results in the amphersand being escaped so thats no good either.


Am I missing something obvious, or should I file a report in the bug tracker?

Reply via email to