ok you guys caught a minor vb bug congratulations hehe..
private.php has this line:
PHP Code:
if (strlen($message)>$pmmaxchars and $pmmaxchars!=0 and $bbuserinfo[usergroupid] != 6) {
eval("standarderror(\"".gettemplate("error_pmtoolong")."\");");
}
which tells the vb to ignore "pmmaxchars" restriction if sender is an admin.
However you get this error because the javascript does not let you click submit if your post is too long. So either disable javascript, or apply this small fix:
find:
PHP Code:
eval("dooutput(\"".gettemplate("priv_sendprivmsg")."\");");
before that add:
PHP Code:
if ($bbuserinfo['usergroupid']==6) {$pmmaxchars=1000000;}
Not tested but should work
Quote:
BTW: Sinan, did you get my pm?
|
yeah and just replied. Sorry I was out of town in the weekend..