Index: trunk/extensions/SemanticForms/includes/SF_FormInputs.php |
— | — | @@ -92,7 +92,7 @@ |
93 | 93 | static function getText( $cur_value, $input_name, $is_mandatory, $is_disabled, $other_args ) { |
94 | 94 | // if it's an autocomplete, call the with-autocomplete function instead |
95 | 95 | if ( array_key_exists( 'autocompletion source', $other_args ) ) { |
96 | | - return self::textInputWithAutocompleteHTML( $cur_value, $input_name, $is_mandatory, $is_disabled, $other_args ); |
| 96 | + return SFTextWithAutocompleteInput::getText( $cur_value, $input_name, $is_mandatory, $is_disabled, $other_args ); |
97 | 97 | } |
98 | 98 | |
99 | 99 | // if there are possible values specified, call the dropdown function |