Viewing 1 replies (of 1 total)
  • Hey,

    To fix this issue, go to your main PHP file, search for the line (170)
    $html .= "<span class='button_name'>" . $button['name'] . "</span>";
    And replace it with
    $html .= "<span class='button_name'>" . stripslashes($button['name']) . "</span>";

    Will fix this issue ??

Viewing 1 replies (of 1 total)
  • The topic ‘Single quote shows an escape character in front’ is closed to new replies.