Commit 119da48af54966f34c424f9b43c0ea0bcbc17b6d
1 parent
14101a04
MasterField renamed properly to MasterFieldId
git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@3770 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing
1 changed file
with
4 additions
and
4 deletions
lib/metadata/fieldset.inc.php
| ... | ... | @@ -19,7 +19,7 @@ class KTFieldset extends KTEntity { |
| 19 | 19 | /** document fieldset mandatory flag*/ |
| 20 | 20 | var $bMandatory; |
| 21 | 21 | var $bIsConditional; |
| 22 | - var $iMasterField; | |
| 22 | + var $iMasterFieldId; | |
| 23 | 23 | |
| 24 | 24 | var $bIsGeneric; |
| 25 | 25 | |
| ... | ... | @@ -35,8 +35,8 @@ class KTFieldset extends KTEntity { |
| 35 | 35 | function setMandatory($bNewValue) { $this->bMandatory = $bNewValue; } |
| 36 | 36 | function getIsConditional () { return $this->bIsConditional; } |
| 37 | 37 | function setIsConditional ($bNewValue) { $this->bIsConditional = $bNewValue; } |
| 38 | - function getMasterField () { return $this->bIsConditional; } | |
| 39 | - function setMasterField ($iNewValue) { $this->bIsConditional = $iNewValue; } | |
| 38 | + function getMasterFieldId () { return $this->iMasterFieldId; } | |
| 39 | + function setMasterFieldId ($iNewValue) { $this->iMasterFieldId = $iNewValue; } | |
| 40 | 40 | function getIsGeneric () { return $this->bIsGeneric; } |
| 41 | 41 | function setIsGeneric ($bNewValue) { $this->bIsGeneric = $bNewValue; } |
| 42 | 42 | |
| ... | ... | @@ -46,7 +46,7 @@ class KTFieldset extends KTEntity { |
| 46 | 46 | "sNamespace" => "namespace", |
| 47 | 47 | "bMandatory" => "mandatory", |
| 48 | 48 | "bIsConditional" => "is_conditional", |
| 49 | - "iMasterField" => "master_field", | |
| 49 | + "iMasterFieldId" => "master_field", | |
| 50 | 50 | "bIsGeneric" => "is_generic", |
| 51 | 51 | ); |
| 52 | 52 | ... | ... |