Normally, when you input a . on a autocomplete textfield, you get the most used references,
since the core update of 7.39 this functionality broke.

In the includes/form.inc there was a change on line 4013 from:

$attributes['value'] = url($element['#autocomplete_path'], array('absolute' => TRUE));

to:

$attributes['value'] = $element['#autocomplete_input']['#url_value'];
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

al0a created an issue. See original summary.

Status: Needs review » Needs work

The last submitted patch, entityreference_autocomplete_with_dot_broke.patch, failed testing.

al0a’s picture

FileSize
1.16 KB
jonram’s picture

Tested the patch in #3 and this seems to fix the issue.

Thanks al0a.

al0a’s picture