From 56e58f3b5e2ed879f00b367f05dbcd98b92633bf Mon Sep 17 00:00:00 2001 From: Andy Miller Date: Wed, 12 Apr 2017 10:28:55 -0600 Subject: [PATCH] Return `""` if no childType set rather than `default` --- system/src/Grav/Common/Page/Page.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/src/Grav/Common/Page/Page.php b/system/src/Grav/Common/Page/Page.php index 48eae0c52..695489942 100644 --- a/system/src/Grav/Common/Page/Page.php +++ b/system/src/Grav/Common/Page/Page.php @@ -1126,7 +1126,7 @@ class Page */ public function childType() { - return isset($this->header->child_type) ? (string)$this->header->child_type : 'default'; + return isset($this->header->child_type) ? (string)$this->header->child_type : ''; } /**