mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 12:05:37 +00: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
@ -79,6 +79,11 @@ class CheckboxSetField extends OptionsetField {
|
|||||||
|
|
||||||
$odd = 0;
|
$odd = 0;
|
||||||
$options = '';
|
$options = '';
|
||||||
|
|
||||||
|
if ($source == null) {
|
||||||
|
$source = array();
|
||||||
|
$options = "<li>No options available</li>";
|
||||||
|
}
|
||||||
|
|
||||||
if($source) foreach($source as $index => $item) {
|
if($source) foreach($source as $index => $item) {
|
||||||
if(is_a($item, 'DataObject')) {
|
if(is_a($item, 'DataObject')) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user