Actions
Bug #4844
closedSelf conditioning causing a loop
Description
Fields should not condition themselves. When they do they cause a loop. An impossible scenario. PHP side should ignore such conditions to avoid infinite loop issues.
Updated by krileon about 10 years ago
This was previously allowed. Try to fix it so it can work again without looping.
Updated by krileon almost 10 years ago
- Status changed from Assigned to Resolved
- % Done changed from 0 to 100
This was due to getFields calling fetchFields, which then caused the loop. getFields is removed in favor of a plugin fieldCall, which calls the getFieldRow instead of letting getFields do it (we already have the field object, it was pointless to regrab the field object via getFields).
Actions