I am using wordpress and scheduler. teh problem is where there is a ’ i puts \ before the quote. I don’t see any way to escape this. Any help would be highly appreciated.
Found a workaround of this problem for WP
In /wp-content/plugins/event-calendar-scheduler/codebase/connector/db_common.php
go to line 567 and replace with below.
public function escape($data){
//return mysql_real_escape_string($data);
return $data;
}
Hope this helps.