Currently, quoteCallback() uses the following selector:
input[name*=uid]

I recently experienced an issue on a site where because a View had an exposed username filter and broke the shipping quotes since the selector will take the value from the first form field with "uid" anywhere in its name. It would help to make the selector a bit more specific:
input[name*=uid][type=hidden]

Support from Acquia helps fund testing for Drupal Acquia logo

Comments

stewart.adam’s picture

Status: Active » Needs review
FileSize
601 bytes

Patch attached.

longwave’s picture

Status: Needs review » Fixed

Committed with the simpler selector of input:hidden[name*=uid]

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.