I get this when attempting to edit an existing Item, this was also present in 1.3.2. When this message appears it prevents me from saving the Item. The strange thing is I can delete the item and re-create this as new, then I do not get the error message. I can even edit the "recreated" entry and this saves without the error. I will compare in the database to see what the difference is, this may be an artifact of upgrading from 1.3.2 to 1.3.3.
UPDATE:
I compared the values in the database for a working and non-working entry, the only difference is that the field "formula" has a value of 1 for the working Item, and an empty value for the non-working Item (note this is not NULL, but empty). I believe this field corresponds to the "Store Value" field, where 1 is "As is". Why would this be blank in previous releases? Should I update my table to store the value of 1 where the current value is ""? Is this a good or bad idea?
Thanks!
/Christian
UPDATE:
I compared the values in the database for a working and non-working entry, the only difference is that the field "formula" has a value of 1 for the working Item, and an empty value for the non-working Item (note this is not NULL, but empty). I believe this field corresponds to the "Store Value" field, where 1 is "As is". Why would this be blank in previous releases? Should I update my table to store the value of 1 where the current value is ""? Is this a good or bad idea?
Code:
UPDATE items SET formula='1' WHERE formula = '';
/Christian
Comment