PDA

View Full Version : v2 : allow moderators and admin to post "too long" posts


robertusss
03-09-2001, 06:17 PM
Version: Vb2 beta 2

if you want admins and moderators to be able to post posts that are too long (sorry for bad english):

newthread.php

line 52


if (strlen($message)>$postmaxchars and $postmaxchars!=0) {


change to:


if (strlen($message)>$postmaxchars and $postmaxchars!=0 and !ismoderator($foruminfo[forumid])) {


it's too small to be called a hack - so I did not put [release] in the headline...

03-09-2001, 06:23 PM
i think this is standard in beta3 but not 100% sure.

03-09-2001, 06:24 PM
That would be the proper way to do it :)