Commit 119da48af54966f34c424f9b43c0ea0bcbc17b6d

Authored by nbm
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,7 +19,7 @@ class KTFieldset extends KTEntity {
19 /** document fieldset mandatory flag*/ 19 /** document fieldset mandatory flag*/
20 var $bMandatory; 20 var $bMandatory;
21 var $bIsConditional; 21 var $bIsConditional;
22 - var $iMasterField; 22 + var $iMasterFieldId;
23 23
24 var $bIsGeneric; 24 var $bIsGeneric;
25 25
@@ -35,8 +35,8 @@ class KTFieldset extends KTEntity { @@ -35,8 +35,8 @@ class KTFieldset extends KTEntity {
35 function setMandatory($bNewValue) { $this->bMandatory = $bNewValue; } 35 function setMandatory($bNewValue) { $this->bMandatory = $bNewValue; }
36 function getIsConditional () { return $this->bIsConditional; } 36 function getIsConditional () { return $this->bIsConditional; }
37 function setIsConditional ($bNewValue) { $this->bIsConditional = $bNewValue; } 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 function getIsGeneric () { return $this->bIsGeneric; } 40 function getIsGeneric () { return $this->bIsGeneric; }
41 function setIsGeneric ($bNewValue) { $this->bIsGeneric = $bNewValue; } 41 function setIsGeneric ($bNewValue) { $this->bIsGeneric = $bNewValue; }
42 42
@@ -46,7 +46,7 @@ class KTFieldset extends KTEntity { @@ -46,7 +46,7 @@ class KTFieldset extends KTEntity {
46 "sNamespace" => "namespace", 46 "sNamespace" => "namespace",
47 "bMandatory" => "mandatory", 47 "bMandatory" => "mandatory",
48 "bIsConditional" => "is_conditional", 48 "bIsConditional" => "is_conditional",
49 - "iMasterField" => "master_field", 49 + "iMasterFieldId" => "master_field",
50 "bIsGeneric" => "is_generic", 50 "bIsGeneric" => "is_generic",
51 ); 51 );
52 52