The apostrophe bug hits you whether it's in the title or description. Actually, anywhere in the digg xml data that gets returned. However, I have a fix for that.
Go to your AdminCP --> Plugins Manager
Find the "diggTopic - Autoadd" plugin and Edit it
Find the following code:
Code:
$digg_url = preg_match_between(' href="','" ', $digg_xml);
Add the following code below it:
Code:
$digg_url = addslashes($digg_url);
Finally, Save your changes.
This will escape unsafe characters for the database update. I don't know if there are other similar errors from the other plugins, but I imagine the fix would be similar. This fixed my digg referral links (links referred to my site from digg.com were generating SQL errors) caused by an apostrophe in the subject line of my digg submission. Your mileage may vary.
Perhaps the author will include this fix in the next update? *hint hint*