Admin Subject Length Option 1.0 This mod allows admins to change the maximum subjet length for posts and IMs through the admin center. MADD Hatter and killa-b Sources\Admin.pl $txt{'371'} $subj{'01'} $timeselected = $FORM{'timeselect'} || 0; $subjlength = $FORM{'subjlength'} || 50; \$timeoffset = $timeoffset; # Time Offset (so if your server is EST, this would be set to -1 for CST) \$subjlength = $subjlength; # Maxiumum number of characters in a subject Sources\Post.pl if (length($subject) > 50) { $subject = substr($subject,0,50); } Sources\ModifyMessage.pl Sources\InstantMessage.pl english.lng 1; $subj{'01'} = "Maximum Subject Length"; Settings.pl $timeoffset = -1; # Time Offset (so if your server is EST, this would be set to -1 for CST) $subjlength = 50; # Maxiumum number of charachter in a post subject