BUGFIX: default child needs to be a string rather then an array

This commit is contained in:
Will Rossiter 2008-10-27 07:06:39 +00:00
parent c3331581ee
commit 8f037c4628
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@
* An individual blog entry page to show a blog entry in full
*/
class BlogEntry extends Page {
static $default_parent = array('BlogHolder');
static $default_parent = 'BlogHolder';
static $can_be_root = false;