I posted this in another thread and still seem to be having the problem .
I had this problem with another site I built with the DHTMLX Sheduler
I am using 2.7.2c
I was told by the guys at dhtmlx that my host had Magic Quotes enabled
the code below fixed the problem on the other site
But how would I make this code work with DT Reg
( On DHTMLX it had to go to top of the config file )
if (get_magic_quotes_gpc()) {
$process = array(&$_GET, &$_POST, &$_COOKIE, &$_REQUEST);
while (list($key, $val) = each($process)) {
foreach ($val as $k => $v) {
unset($process[$key][$k]);
if (is_array($v)) {
$process[$key][stripslashes($k)] = $v;
$process[] = &$process[$key][stripslashes($k)];
} else {
$process[$key][stripslashes($k)] = stripslashes($v);
}
}
}
Pictured below is whats happening
[attachment=2:2yt0k2xq]<!-- ia2 -->Good.jpg<!-- ia2 -->[/attachment:2yt0k2xq]
[attachment=1:2yt0k2xq]<!-- ia1 -->after save.jpg<!-- ia1 -->[/attachment:2yt0k2xq]
[attachment=0:2yt0k2xq]<!-- ia0 -->tooltip.JPG<!-- ia0 -->[/attachment:2yt0k2xq]