Quote:
Originally Posted by EvilJohn
I have two ladies on my forums who use "<3" in their user names. I receive an error when trying to send them a gift. I suggested they may want to change their user names.
|
To fix this, open gifts.php in your forum root and search for
Code:
$pm->set_recipients($recipient['username'], $do);
and replace with
Code:
$pm->set_recipients(html_entity_decode($recipient['username']), $doit);
I also modified it an integrated with vbookie so members buy the gifts as opposed to just give them out for free. Probably easy to do this with any other cash system which has a column off the user table.