mirror of
https://github.com/silverstripe/silverstripe-frameworktest
synced 2024-10-22 11:06:02 +02:00
MINOR: change FTPageHolder::$allowed_children from string to array so as not to break SiteTree::allowedChildren() call
This commit is contained in:
parent
288dd47257
commit
1c4e11274a
@ -2,5 +2,5 @@
|
|||||||
|
|
||||||
class FTPageHolder extends Page {
|
class FTPageHolder extends Page {
|
||||||
static $default_child = 'FTPage';
|
static $default_child = 'FTPage';
|
||||||
static $allowed_children = 'FTPage';
|
static $allowed_children = array('FTPage');
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user