mirror of
https://github.com/silverstripe/silverstripe-cms
synced 2024-10-22 08:05:56 +02:00
MINOR refactored setting/getting strict hierarchy setting. (from r98654) (from r99126)
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/trunk@111607 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
parent
c8f22503fc
commit
11fac7c0c6
@ -112,7 +112,7 @@ class CMSMainTest extends FunctionalTest {
|
||||
function testCanPublishPageWithUnpublishedParentWithStrictHierarchyOff() {
|
||||
$this->logInWithPermssion('ADMIN');
|
||||
|
||||
SiteTree::enforce_strict_hierarchy(true);
|
||||
SiteTree::set_enforce_strict_hierarchy(true);
|
||||
$parentPage = $this->objFromFixture('Page','page3');
|
||||
$childPage = $this->objFromFixture('Page','page1');
|
||||
|
||||
@ -124,7 +124,7 @@ class CMSMainTest extends FunctionalTest {
|
||||
$childPage->getCMSActions()->column('Name'),
|
||||
'Can publish a page with an unpublished parent with strict hierarchy off'
|
||||
);
|
||||
SiteTree::enforce_strict_hierarchy(false);
|
||||
SiteTree::set_enforce_strict_hierarchy(false);
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user