I have been playing around with myLANsite for awhile now and have been having some issues with ExtCal entries sometimes not updating... Well after some detailed investigation, I found that single quotes (') weren't being escaped propery before insertion into the db. FIX change admin.mls_events.php line 322? to read: $extcal->description = addslashes($cnf_mls_events["extcal_description"]); The "addslashes" did the trick. /Andrew |