Opened 8 years ago
Closed 8 years ago
#2008 closed defect (fixed)
It is not possible to change quota values
Reported by: | Nicklas Nordborg | Owned by: | Nicklas Nordborg |
---|---|---|---|
Priority: | major | Milestone: | BASE 3.9 |
Component: | core | Version: | |
Keywords: | Cc: |
Description
It is not possible to modify the quota values of existing quota entries. There is no error message. The quota value remains the same.
When creating new quota items there is a "side-effect" that always set the total quota to 0. This happens because the value is initialized to 0 and then it is not possible to change it.
Change History (3)
comment:1 by , 8 years ago
comment:2 by , 8 years ago
Milestone: | BASE 3.8.1 → BASE 3.9 |
---|---|
Owner: | changed from | to
Status: | new → assigned |
comment:3 by , 8 years ago
Resolution: | → fixed |
---|---|
Status: | assigned → closed |
Note:
See TracTickets
for help on using tickets.
I think this was broken by #1742. The change near http://base.thep.lu.se/changeset/6468#file40 replaced a
put()
call withadd()
. The problem is thatadd()
will not replace the existing value.