mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
BUGFIX: was being passed to foreach without a check to see if it's an array or not. (from r86202)
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@90834 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
parent
06f71f6cb5
commit
233a8fcd85
@ -80,6 +80,11 @@ class CheckboxSetField extends OptionsetField {
|
||||
$odd = 0;
|
||||
$options = '';
|
||||
|
||||
if ($source == null) {
|
||||
$source = array();
|
||||
$options = "<li>No options available</li>";
|
||||
}
|
||||
|
||||
if($source) foreach($source as $index => $item) {
|
||||
if(is_a($item, 'DataObject')) {
|
||||
$key = $item->ID;
|
||||
|
Loading…
Reference in New Issue
Block a user