mirror of
https://github.com/silverstripe/silverstripe-docsviewer
synced 2024-10-22 11:05:56 +02:00
FIX: IsFolder -> isFolder
commit 9672f2862c
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
|
* @param Boolean
|
||||||
*/
|
*/
|
||||||
public function setIsFolder($isFolder = false) {
|
public function setIsFolder($isFolder = false) {
|
||||||
$this->IsFolder = $isFolder;
|
$this->isFolder = $isFolder;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return Boolean
|
* @return Boolean
|
||||||
*/
|
*/
|
||||||
public function getIsFolder($isFolder = false) {
|
public function getIsFolder($isFolder = false) {
|
||||||
return $this->IsFolder;
|
return $this->isFolder;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user