I also faced this problem.
This occurs and you have a slash “/” in item (title) of the trust-form.
私もこの問題に直面しました。
これはtrust-formの項目(タイトル)に半角スラッシュ「/」が入っていると発生します。
エラーが出ている行が
if ( preg_match(‘/[‘.$name.’]/i’, $subject) ) {
などとなっているので
if ( preg_match(‘/[‘.preg_quote($name,’/’).’]/i’, $subject) ) {
とpreg_quote()関数を追加すれば解消されます。