mirror of
https://github.com/silverstripe/silverstripe-blog
synced 2024-10-22 11:05:58 +02:00
Removed InheritSideBar db field
`InheritSideBar` is a concept applicable to `Widgets`. It can be re-included as part of the widget module `WidgetPageExtension`
This commit is contained in:
parent
4f3c258bf4
commit
a46b79a854
@ -24,13 +24,10 @@ class BlogTree extends Page {
|
|||||||
|
|
||||||
private static $db = array(
|
private static $db = array(
|
||||||
'Name' => 'Varchar(255)',
|
'Name' => 'Varchar(255)',
|
||||||
'InheritSideBar' => 'Boolean',
|
|
||||||
'LandingPageFreshness' => 'Varchar',
|
'LandingPageFreshness' => 'Varchar',
|
||||||
);
|
);
|
||||||
|
|
||||||
private static $defaults = array(
|
private static $defaults = array();
|
||||||
'InheritSideBar' => True
|
|
||||||
);
|
|
||||||
|
|
||||||
private static $has_one = array();
|
private static $has_one = array();
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user