mirror of
https://github.com/silverstripe/silverstripe-cms
synced 2024-10-22 06:05:56 +00:00
BUGFIX: Fixed a PHP segfault bug with the WidgetAreaEditor (from r96868)
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/trunk@102703 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
parent
c9df94a7af
commit
0cdf6e8d8f
@ -46,6 +46,9 @@ class WidgetAreaEditor extends FormField {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function UsedWidgets() {
|
function UsedWidgets() {
|
||||||
|
// Call class_exists() to load Widget.php earlier and avoid a segfault
|
||||||
|
class_exists('Widget');
|
||||||
|
|
||||||
$relationName = $this->name;
|
$relationName = $this->name;
|
||||||
$widgets = $this->form->getRecord()->getComponent($relationName)->Items();
|
$widgets = $this->form->getRecord()->getComponent($relationName)->Items();
|
||||||
return $widgets;
|
return $widgets;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user