Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter ubenzer

    (@ubenzer)

    I solved it myself.

    Using htmlspecialchars is OK.

    change this:
    $title = $post->post_title;
    into this:
    $title = htmlspecialchars($post->post_title);

    AND
    change this:
    $excerpt= $this->GetExcerpt($post->post_content);
    into this:
    $excerpt= htmlspecialchars($this->GetExcerpt($post->post_content));

    This is now included in v1.0 thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘[Plugin: Snazzy Archives] & breaks validation’ is closed to new replies.