FIX: IsFolder -> isFolder

commit 9672f2862c introduced an error in
getter/setter
This commit is contained in:
martimiz 2012-11-09 14:01:57 +01:00 committed by Will Rossiter
parent 933fe4b9ae
commit 262b035fb5

View File

@ -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;
} }
/** /**