Quote:
Today at 01:21 AM WEForums said this in Post #3
In newreply.php and newthread.php find:
Code:
$message = stripsession($message);
if
(strlen($message)>$postmaxchars and $postmaxchars!=0) {
REPLACE it with:
Code:
$message = stripsession($message);
if
(strlen($message)>$postmaxchars and $postmaxchars!=0 and $bbuserinfo[usergroupid] != 6) {
Find (in newreply):
Code:
eval("dooutput(\"".gettemplate("newreply")."\");");
}
ADD above:
Code:
if ($bbuserinfo['usergroupid']==6) {$postmaxchars=10000000;}
Find (in newthread):
Code:
eval("dooutput(\"".gettemplate("newthread")."\");");
}
Add ABOVE:
Code:
($bbuserinfo['usergroupid']==6) {$postmaxchars=10000000;}
EDIT: Didn't see your reply, or I would have let you do it. And I hope that works....seems to be working for me.
|
There are a few more places to change it or you will get the java-script warning when posting the message. I put it all in the hack file.