Then you can use the function "stripslashes" on php when you are recalling the variable (you can search the variable with regex into the directory).
For example, for "change item" you cna modify on bookings.admin.php on line #60:
- Code: Select all
<input type="button" value="'.$lang["bt_change_item"].'" style="" onclick="document.location.href=\'index.php?page=items&action=edit&id='.$_REQUEST["id_item"].'\'">
with
- Code: Select all
<input type="button" value="'.stripslashes($lang["bt_change_item"]).'" style="" onclick="document.location.href=\'index.php?page=items&action=edit&id='.$_REQUEST["id_item"].'\'">
P.S.: this was the modified line (see
http://forum.ajaxavailabilitycalendar.com/viewtopic.php?f=23&t=1429) but the basic is the same