mirror of
https://github.com/silverstripe/silverstripe-docsviewer
synced 2024-10-22 09:05:56 +00:00
FIX: IsFolder -> isFolder
commit 9672f2862ced77516b154389c75281bd020c22d5 introduced an error in getter/setter
This commit is contained in:
parent
933fe4b9ae
commit
262b035fb5
@ -46,14 +46,14 @@ class DocumentationPage extends ViewableData {
|
||||
* @param Boolean
|
||||
*/
|
||||
public function setIsFolder($isFolder = false) {
|
||||
$this->IsFolder = $isFolder;
|
||||
$this->isFolder = $isFolder;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return Boolean
|
||||
*/
|
||||
public function getIsFolder($isFolder = false) {
|
||||
return $this->IsFolder;
|
||||
return $this->isFolder;
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
x
Reference in New Issue
Block a user