BUGFIX: was being passed to foreach without a check to see if it's an array or not.

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/branches/2.3@86202 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
Jeremy Warne 2009-09-14 02:58:38 +00:00 committed by Sam Minnee
parent 900812eb75
commit 05c51f4aaf

View File

@ -79,6 +79,11 @@ class CheckboxSetField extends OptionsetField {
$odd = 0;
$options = '';
if ($source == null) {
$source = array();
$options = "<li>No options available</li>";
}
foreach($source as $index => $item) {
if(is_a($item, 'DataObject')) {