Project:Ubercart Addresses
Version:6.x-1.x-dev
Component:Code
Category:bug report
Priority:normal
Assigned:Unassigned
Status:closed (fixed)

Issue Summary

When user goes to address edit page blank inputs appears there.
Here is a patch for this issue.

AttachmentSizeStatusTest resultOperations
fix_for_edit_page.patch412 bytesIgnored: Check issue status.NoneNone

Comments

#1

Status:patch (to be ported)» fixed

The patch changes if ($aid) to if (!is_null($aid)). The only significant difference between the two is that is that the former excludes $aid = 0 and the latter allows it.

I don't have enough information to reproduce the problem (and have not seen it), but I did add a special check for $aid === 0. The uc_addresses_db_get_address() function now returns immediately with FALSE in this case.

#2

Status:fixed» closed (fixed)

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