When trying to add user budget on the admin/config/cloud_metering/group_settings/%/edit page, the user budget is not saved.

Comments

baldwinlouie’s picture

Status: Active » Fixed

http://drupalcode.org/project/cloud.git/commit/4be4adf

The existing code was blindly doing a db_update(). If a new row was entered by the user, it was being treated as an update instead of a new row. The new code checks for the existence of the row first. If it doesn't exist, it is added using db_insert().

Status: Fixed » Closed (fixed)

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