Okay I'm not a skilled coder but here's the workaround I came up with for users who have apostrophes in their names:
Edit
functions_showthread.php:
Find:
HTML Code:
// do posts from ignored users
Add Above:
PHP Code:
$post['qrusername'] = addslashes($post['username']);
Then edit the
postbit template:
Find:
HTML Code:
onclick="return doMultiQuote('$post[username]',
Replace with:
HTML Code:
onclick="return doMultiQuote('$post[qrusername]',
This works for me, but use at your own risk.
Edited to add: Don't forget to change
legacy_postbit too, if you give your users the option to use it. I always forget that.