• This is very useful and good plugin, but the usersubmission.php file contains few bugs.

    1) Characters other then Latin 1 are visible as strange spiders.
    2) Email confirmation does not contain subject.

    I made some workarounds in my webpage:
    1) replaced
    $headers .= “Content-type: text/html; charset=iso-8859-1\r\n”;
    by:
    $headers .= “Content-type: text/html; charset=utf-8\r\n”;

    2) added one more
    if ( ! isset( $emailtitle ) || $emailtitle == ” ) { $emailtitle = ‘WordPress Link Library plugin message’; }
    just before:
    wp_mail( $adminmail, $emailtitle, $emailmessage, $headers );

    They work, but perhaps they are incorrect. Especially 2nd, because there is something wrong in a preceeding code and that should be fixed somehow.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Yannick Lefebvre

    (@jackdewey)

    I agree with your first point and have incorporate that fix in an update I just pushed out. For your second point, what is missing is a check if moderationnotificationtitle is empty in the first condition. If you have no title and that field is empty, you end up without a title. I fixed that as well.

    Thread Starter darekk2

    (@darekk2)

    Thank you.

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘email confirmation bug reports’ is closed to new replies.