• There is no ploblelm in the operation, however the following warnings are displayed on the last page of transmission completion.

    送信完了画面に下記エラーメッセージが表示されます。
    送受信はうまくいっていますが、ユーザーに誤解を招くので、出ないようにしたいのです。

    Warning: preg_match() [function.preg-match]: Unknown modifier ‘?’ in /*****/wp/wp-content/plugins/trust-form/trust-form.php on line 2152
    Warning: preg_match() [function.preg-match]: Unknown modifier ‘?’ in /*****/wp/wp-content/plugins/trust-form/trust-form.php on line 2160
    Warning: preg_match() [function.preg-match]: Unknown modifier ‘?’ in /*****/wp/wp-content/plugins/trust-form/trust-form.php on line 2197

    https://www.ads-software.com/plugins/trust-form/

Viewing 1 replies (of 1 total)
  • 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()関数を追加すれば解消されます。

Viewing 1 replies (of 1 total)
  • The topic ‘preg_match error in trust-form.php 送信完了画面でpreg_matchエラー?が表示されます’ is closed to new replies.