From 65df265e30201ceb74271cf4f6400bc6485af52d Mon Sep 17 00:00:00 2001 From: Andy Miller Date: Thu, 6 Aug 2015 22:26:19 -0600 Subject: [PATCH] Added a default type as a default type :) --- system/src/Grav/Common/Page/Types.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/system/src/Grav/Common/Page/Types.php b/system/src/Grav/Common/Page/Types.php index f6407cadd..7138359d9 100644 --- a/system/src/Grav/Common/Page/Types.php +++ b/system/src/Grav/Common/Page/Types.php @@ -49,6 +49,9 @@ class Types implements \ArrayAccess, \Iterator, \Countable $this->systemBlueprints = $this->findBlueprints('blueprints://pages'); } + // register default by default + $this->register('default'); + foreach (Folder::all($path, $options) as $type) { $this->register($type); }