
tnks i need this fix - works great -
tnks for the help,

the hack - is just what the doctor ordered - every one likes a preview, i think
ken
[QUOTE]
Originally posted by wluke
OKay.. I have installed this as well and come across another pecularity.
If you look in private.php in the "New Message" section there is this line:
PHP Code:
if (isset($privatemessageid)) {
Well what this does is start a check to make sure the previous message actually exists. On my version and installation of PHP even though it was set to '0' this was returning true. I had to change the line to the following to prevent a "Invalid Message Error".
PHP Code:
if (isset($privatemessageid) and $privatemessageid!=0) {
With that it works great. I recommend that if the error doesn't occur then use Bira's original code. If it does then make this modification.