MINOR: change FTPageHolder::$allowed_children from string to array so as not to break SiteTree::allowedChildren() call

This commit is contained in:
Normann Lou 2010-02-01 22:58:21 +00:00
parent 288dd47257
commit 1c4e11274a

View File

@ -2,5 +2,5 @@
class FTPageHolder extends Page {
static $default_child = 'FTPage';
static $allowed_children = 'FTPage';
static $allowed_children = array('FTPage');
}