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

    (@paulblizniukgmailcom)

    I have an identical issue with Swedish characters, like ? ? ? etc.

    All get stripped upon upload, making all redirects that contain special chars obsolete. Is there a way to quickly turn off the sanitize_text_field option?

    Poni02

    (@paulblizniukgmailcom)

    Alex, you can try this:

    in page_post_redirect_plugin.php, remove EVERY instance of sanitize_text_field()

    Example:

    $request = sanitize_text_field(trim($data[‘request’][$i]));

    change to:

    $request = $data[‘request’][$i];

    This will ensure that no text gets cleaned up.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Quick Redirect Problem – Latin Characters’ is closed to new replies.