I was getting this on the top of all my 404 pages:
Warning: ereg() [function.ereg]: REG_BADRPT in /home/blahblah/wp-content/plugins/twitter-friendly-links/twitter-friendly-links.php on line 198
I fixed it by escaping some characters :)
On line 198 change this:
if (ereg("^{$style}([0-9a-z]+)/?$", $request, $regs))
to
if (ereg("^\{$style\}([0-9a-z]+)/?$", $request, $regs))