From 53d06d9439e09ac60a0a00abe9d43a7574b10ef3 Mon Sep 17 00:00:00 2001 From: michael Date: Wed, 26 Feb 2003 12:41:17 +0000 Subject: [PATCH] fixed checked out variable name typo --- lib/documentmanagement/Document.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/documentmanagement/Document.inc b/lib/documentmanagement/Document.inc index 6ef6629..47df0a2 100644 --- a/lib/documentmanagement/Document.inc +++ b/lib/documentmanagement/Document.inc @@ -184,12 +184,12 @@ class Document { /** get the document check out status */ function getIsCheckedOut() { - return $this->bCheckedOut; + return $this->bIsCheckedOut; } /** set the document check out status */ function setIsCheckedOut($bNewValue) { - $this->bCheckedOut = $bNewValue; + $this->bIsCheckedOut = $bNewValue; } /** -- libgit2 0.21.4