OK,
here goes, I -
I! - found the fix to those problems with 1.1.2
Mark,
In global.php find this code that you were asked to paste in the pminstallation.txt:
Code:
// PRIVATE MESSAGING
if ($forumid=="-1") {
global $privallowhtml, $privbbimagecode, $privallowsmilies, $privallowbbcode;
$allowhtml = $privallowhtml;
$allowbbimagecode = $privbbimagecode;
$allowsmilies = $privallowsmilies;
$allowbbcode = $privallowbbcode;
} else {
// END PRIVATE MESSAGING
And replace it with:
Code:
// PRIVATE MESSAGING
if ($forumid=="-1") {
global $privallowhtml, $privbbimagecode, $privallowsmilies, $privallowbbcode;
$dohtml = $privallowhtml;
$dobbimagecode = $privbbimagecode;
$dosmilies = $privallowsmilies;
$dobbcode = $privallowbbcode;
} else {
// END PRIVATE MESSAGING
As for myself - as a temporary fix, I placed in the "sendprivmsg" template the form line <input type="radio" name="iconid" value="0" checked> -- this gives value 0 to $iconid and at least allows users to send and receive messages.
I *think* I had the problem due to the fact that I have in my BB options the Message Icon disabled; and while I did allow it for PM, it seems there's a bug in the PM hack whereby if it's not allowed for the entire BB, then it doesn't work for PM and therefore gives no value (not even 0) to the $iconid.
In any case, it's working now. Who needs icons