The s_group is taken from the url, so if there are any
special characters in the schedule name for example #,
it will not match up to the value in the database. To
fix this go through the es_functions.php file and
every select that uses the s_group add the urldecode
function to it in the where statement change it like
this:
SELECT * FROM es_schedule WHERE s_u_id=".$user
["u_id"]." AND s_group!='".addslashes(urldecode
($s_group))."' ....
Hope this helps somebody,
PJ