TYPO3 Exception 1481380393

Might happen after upgrading to TYPO3 8.7 LTS or above.

Fix: Check the syntax in your FlexForms when using <displayCond>. See the displayCond in the TCA Reference:

Old:

<displayCond>
   <AND>
      <numIndex>FIELD:switchableControllerActions:!=:Event->list</numIndex>
   </AND>
</displayCond>
Copied!

New:

<displayCond>
   FIELD:switchableControllerActions:!=:Event->list
</displayCond>
Copied!