Index: trunk/extensions/SemanticForms/includes/forminputs/SF_TextInput.php |
— | — | @@ -166,7 +166,7 @@ |
167 | 167 | } |
168 | 168 | $text = Xml::element( 'input', $inputAttrs ); |
169 | 169 | |
170 | | - if ( array_key_exists( 'is_uploadable', $other_args ) && $other_args['is_uploadable'] == true ) { |
| 170 | + if ( array_key_exists( 'uploadable', $other_args ) && $other_args['uploadable'] == true ) { |
171 | 171 | if ( array_key_exists( 'is_list', $other_args ) && $other_args['is_list'] == true ) { |
172 | 172 | if ( array_key_exists( 'delimiter', $other_args ) ) { |
173 | 173 | $delimiter = $other_args['delimiter']; |
Index: trunk/extensions/SemanticForms/includes/forminputs/SF_TextAreaWithAutocompleteInput.php |
— | — | @@ -133,7 +133,7 @@ |
134 | 134 | $textarea_input = Xml::element( 'textarea', $textarea_attrs, $cur_value, false ); |
135 | 135 | $text .= $textarea_input; |
136 | 136 | |
137 | | - if ( array_key_exists( 'is_uploadable', $other_args ) && $other_args['is_uploadable'] == true ) { |
| 137 | + if ( array_key_exists( 'uploadable', $other_args ) && $other_args['uploadable'] == true ) { |
138 | 138 | if ( array_key_exists( 'default filename', $other_args ) ) { |
139 | 139 | $default_filename = $other_args['default filename']; |
140 | 140 | } else { |
Index: trunk/extensions/SemanticForms/includes/forminputs/SF_TextWithAutocompleteInput.php |
— | — | @@ -178,7 +178,7 @@ |
179 | 179 | } |
180 | 180 | $text = "\n\t" . Xml::element( 'input', $inputAttrs ) . "\n"; |
181 | 181 | |
182 | | - if ( array_key_exists( 'is_uploadable', $other_args ) && $other_args['is_uploadable'] == true ) { |
| 182 | + if ( array_key_exists( 'uploadable', $other_args ) && $other_args['uploadable'] == true ) { |
183 | 183 | if ( array_key_exists( 'default filename', $other_args ) ) { |
184 | 184 | $default_filename = $other_args['default filename']; |
185 | 185 | } else { |