Viewing 3 replies - 1 through 3 (of 3 total)
  • I am experiencing the same issue. Do anyone have a solution to this?

    Found the issue and solution:
    Open /inc/send-page.php
    Search for:
    $subject = esc_sql( $subject );
    $content = esc_sql( $content );
    $recipient = array_map( ‘esc_sql’, $recipient );

    And replace with:
    $subject = addslashes( $subject );
    $content = addslashes( $content );
    $recipient = array_map( ‘addslashes’, $recipient );

    Thread Starter Keith1028

    (@keith1028)

    This did not solve my problems with this plugin.
    I get the same results…

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Formatting lost on reply to PM’ is closed to new replies.