fixed warning: missing argument 3

This commit is contained in:
Ralf Becker 2011-06-28 13:47:16 +00:00
parent 27edf73e34
commit 9cb94fc0cf

View File

@ -272,7 +272,7 @@ class ajax_select_widget
echo "$get_rows_app.$get_rows_class.$get_rows_method is not a valid method for getting the rows"; echo "$get_rows_app.$get_rows_class.$get_rows_method is not a valid method for getting the rows";
} else { } else {
$query = array_merge($extension_data['options'], $value_in); $query = array_merge($extension_data['options'], $value_in);
$count = $get_rows_obj->$get_rows_method($query, $results); $count = $get_rows_obj->$get_rows_method($query, $results, $readonlys=array());
if($count == 1) { if($count == 1) {
$value = $results[0][$extension_data['options']['id_field']]; $value = $results[0][$extension_data['options']['id_field']];