S SkyLoKi Member May 12, 2018 #2 I try that: PHP: $entity->field = true; But get error: LogicException: Attempted to set 'field ' while a save was pending without forceSet in src\XF\Mvc\Entity\Entity.php at line 532 Click to expand...
I try that: PHP: $entity->field = true; But get error: LogicException: Attempted to set 'field ' while a save was pending without forceSet in src\XF\Mvc\Entity\Entity.php at line 532 Click to expand...
Snog Well-known member May 12, 2018 #3 I believe this is what you need... Code: $entity->set('field', true, ['forceSet' => true]); My usual disclaimer: I could be wrong.
I believe this is what you need... Code: $entity->set('field', true, ['forceSet' => true]); My usual disclaimer: I could be wrong.