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 ??