Index: trunk/extensions/SemanticForms/includes/forminputs/SF_ListBoxInput.php |
— | — | @@ -106,7 +106,7 @@ |
107 | 107 | $this->mInputName, |
108 | 108 | $this->mIsMandatory, |
109 | 109 | $this->mIsDisabled, |
110 | | - $mOtherArgs |
| 110 | + $this->mOtherArgs |
111 | 111 | ); |
112 | 112 | } |
113 | 113 | } |
Index: trunk/extensions/SemanticForms/includes/forminputs/SF_CategoriesInput.php |
— | — | @@ -130,7 +130,7 @@ |
131 | 131 | $this->mInputName, |
132 | 132 | $this->mIsMandatory, |
133 | 133 | $this->mIsDisabled, |
134 | | - $mOtherArgs |
| 134 | + $this->mOtherArgs |
135 | 135 | ); |
136 | 136 | } |
137 | 137 | } |
Index: trunk/extensions/SemanticForms/includes/forminputs/SF_CheckboxInput.php |
— | — | @@ -84,7 +84,7 @@ |
85 | 85 | $this->mInputName, |
86 | 86 | $this->mIsMandatory, |
87 | 87 | $this->mIsDisabled, |
88 | | - $mOtherArgs |
| 88 | + $this->mOtherArgs |
89 | 89 | ); |
90 | 90 | } |
91 | 91 | } |
Index: trunk/extensions/SemanticForms/includes/forminputs/SF_RadioButtonInput.php |
— | — | @@ -133,7 +133,7 @@ |
134 | 134 | $this->mInputName, |
135 | 135 | $this->mIsMandatory, |
136 | 136 | $this->mIsDisabled, |
137 | | - $mOtherArgs |
| 137 | + $this->mOtherArgs |
138 | 138 | ); |
139 | 139 | } |
140 | 140 | } |
Index: trunk/extensions/SemanticForms/includes/forminputs/SF_TextAreaWithAutocompleteInput.php |
— | — | @@ -164,7 +164,7 @@ |
165 | 165 | $this->mInputName, |
166 | 166 | $this->mIsMandatory, |
167 | 167 | $this->mIsDisabled, |
168 | | - $mOtherArgs |
| 168 | + $this->mOtherArgs |
169 | 169 | ); |
170 | 170 | } |
171 | 171 | } |
Index: trunk/extensions/SemanticForms/includes/forminputs/SF_DateTimeInput.php |
— | — | @@ -141,7 +141,7 @@ |
142 | 142 | $this->mInputName, |
143 | 143 | $this->mIsMandatory, |
144 | 144 | $this->mIsDisabled, |
145 | | - $mOtherArgs |
| 145 | + $this->mOtherArgs |
146 | 146 | ); |
147 | 147 | } |
148 | 148 | } |
Index: trunk/extensions/SemanticForms/includes/forminputs/SF_DropdownInput.php |
— | — | @@ -108,7 +108,7 @@ |
109 | 109 | $this->mInputName, |
110 | 110 | $this->mIsMandatory, |
111 | 111 | $this->mIsDisabled, |
112 | | - $mOtherArgs |
| 112 | + $this->mOtherArgs |
113 | 113 | ); |
114 | 114 | } |
115 | 115 | } |
Index: trunk/extensions/SemanticForms/includes/forminputs/SF_YearInput.php |
— | — | @@ -76,7 +76,7 @@ |
77 | 77 | $this->mInputName, |
78 | 78 | $this->mIsMandatory, |
79 | 79 | $this->mIsDisabled, |
80 | | - $mOtherArgs |
| 80 | + $this->mOtherArgs |
81 | 81 | ); |
82 | 82 | } |
83 | 83 | } |
Index: trunk/extensions/SemanticForms/includes/forminputs/SF_TextWithAutocompleteInput.php |
— | — | @@ -236,7 +236,7 @@ |
237 | 237 | $this->mInputName, |
238 | 238 | $this->mIsMandatory, |
239 | 239 | $this->mIsDisabled, |
240 | | - $mOtherArgs |
| 240 | + $this->mOtherArgs |
241 | 241 | ); |
242 | 242 | } |
243 | 243 | } |
Index: trunk/extensions/SemanticForms/includes/forminputs/SF_ComboBoxInput.php |
— | — | @@ -116,7 +116,7 @@ |
117 | 117 | $this->mInputName, |
118 | 118 | $this->mIsMandatory, |
119 | 119 | $this->mIsDisabled, |
120 | | - $mOtherArgs |
| 120 | + $this->mOtherArgs |
121 | 121 | ); |
122 | 122 | } |
123 | 123 | } |
Index: trunk/extensions/SemanticForms/includes/forminputs/SF_CategoryInput.php |
— | — | @@ -149,7 +149,7 @@ |
150 | 150 | $this->mInputName, |
151 | 151 | $this->mIsMandatory, |
152 | 152 | $this->mIsDisabled, |
153 | | - $mOtherArgs |
| 153 | + $this->mOtherArgs |
154 | 154 | ); |
155 | 155 | } |
156 | 156 | } |
Index: trunk/extensions/SemanticForms/includes/forminputs/SF_DateInput.php |
— | — | @@ -121,7 +121,7 @@ |
122 | 122 | $this->mInputName, |
123 | 123 | $this->mIsMandatory, |
124 | 124 | $this->mIsDisabled, |
125 | | - $mOtherArgs |
| 125 | + $this->mOtherArgs |
126 | 126 | ); |
127 | 127 | } |
128 | 128 | } |
Index: trunk/extensions/SemanticForms/includes/forminputs/SF_TextAreaInput.php |
— | — | @@ -171,7 +171,7 @@ |
172 | 172 | */ |
173 | 173 | public function getHtmlText() { |
174 | 174 | return self::getHTML( |
175 | | - $this->mCurrentValue, $this->mInputName, $this->mIsMandatory, $this->mIsDisabled, $mOtherArgs |
| 175 | + $this->mCurrentValue, $this->mInputName, $this->mIsMandatory, $this->mIsDisabled, $this->mOtherArgs |
176 | 176 | ); |
177 | 177 | } |
178 | 178 | |
Index: trunk/extensions/SemanticForms/includes/forminputs/SF_CheckboxesInput.php |
— | — | @@ -120,7 +120,7 @@ |
121 | 121 | $this->mInputName, |
122 | 122 | $this->mIsMandatory, |
123 | 123 | $this->mIsDisabled, |
124 | | - $mOtherArgs |
| 124 | + $this->mOtherArgs |
125 | 125 | ); |
126 | 126 | } |
127 | 127 | } |