From a46b79a8541d5cf2bf40022b9e92317e5aba9ac7 Mon Sep 17 00:00:00 2001 From: Jeremy Shipman Date: Mon, 23 Sep 2013 09:55:04 +1200 Subject: [PATCH] Removed InheritSideBar db field `InheritSideBar` is a concept applicable to `Widgets`. It can be re-included as part of the widget module `WidgetPageExtension` --- code/BlogTree.php | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/code/BlogTree.php b/code/BlogTree.php index 33f268c..181c379 100644 --- a/code/BlogTree.php +++ b/code/BlogTree.php @@ -24,13 +24,10 @@ class BlogTree extends Page { private static $db = array( 'Name' => 'Varchar(255)', - 'InheritSideBar' => 'Boolean', 'LandingPageFreshness' => 'Varchar', ); - private static $defaults = array( - 'InheritSideBar' => True - ); + private static $defaults = array(); private static $has_one = array();