Simple Personal Text Length 1.0 This mod will allow you to set the maximum number of characters allowed in the users' personal texts. Just back up your files, install the mod, and once installed and uploaded go to your Settings and Preferences menu to set the Personal Text limits. Tao Do Studio http://www.taodostudio.com Sources/AdminEdit.pl $txt{'723'} $sptltxt{'01'} $maxmesslen = $FORM{'maxmesslen'} || 5000; $PersonalTxt = $FORM{'personal_text'} || 50; \$MaxMessLen = $maxmesslen; # Maximum Allowed Characters in a Posts \$PersonalTxt = $PersonalTxt; # Maximum Allowed Characters in Personal Texts english.lng $yycopyright = qq~$mbname » Powered by YaBB 1 Gold - SP1!
\nYaBB © 2000-2001,
Xnull. All Rights Reserved.~;
#Set Personal Text Lenght Mod $sptltxt{'01'} = "Maximum allowed characters in personal texts"; $sptltxt{'02'} = "Your personal text is too long! It must be less than $PersonalTxt characters."; #Set Personal Text Lenght Mod Sources/Profile.pl if(length($member{'usertext'}) > 51) { &fatal_error("$txt{'757'}"); } if(length($member{'usertext'}) > $PersonalTxt) { &fatal_error("$sptltxt{'02'}"); }