
05-29-2005, 06:01 AM
|
 |
|
|
Join Date: Mar 2002
Location: Des Moines, IA (USA)
Posts: 15,776
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by tmhall
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. 
|
Good one, sir. Thanks!
|