Commit 53d06d9439e09ac60a0a00abe9d43a7574b10ef3
1 parent
7ff274f7
fixed checked out variable name typo
git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@1139 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing
1 changed file
with
2 additions
and
2 deletions
lib/documentmanagement/Document.inc
| @@ -184,12 +184,12 @@ class Document { | @@ -184,12 +184,12 @@ class Document { | ||
| 184 | 184 | ||
| 185 | /** get the document check out status */ | 185 | /** get the document check out status */ |
| 186 | function getIsCheckedOut() { | 186 | function getIsCheckedOut() { |
| 187 | - return $this->bCheckedOut; | 187 | + return $this->bIsCheckedOut; |
| 188 | } | 188 | } |
| 189 | 189 | ||
| 190 | /** set the document check out status */ | 190 | /** set the document check out status */ |
| 191 | function setIsCheckedOut($bNewValue) { | 191 | function setIsCheckedOut($bNewValue) { |
| 192 | - $this->bCheckedOut = $bNewValue; | 192 | + $this->bIsCheckedOut = $bNewValue; |
| 193 | } | 193 | } |
| 194 | 194 | ||
| 195 | /** | 195 | /** |