UBB.Dev
Posted By: Ron M No Signature Limit for Admins/Mods - 08/04/2006 6:09 AM
It is not totally unlimited (A TEXT column with a maximum length of 65,535 (216 – 1) characters.) but close enough for 95% of you wink


In /scripts/changebasic.inc.php
Find:
Code
	// If signature is greater than the specified size, do not allow
if ( strlen($Signature) > $config['SIGNATURE_LENGTH'] ) {

Replace with:
Code
// If signature is greater than the specified size, do not allow
if ( strlen($Signature) > $config['SIGNATURE_LENGTH'] &&
( ($user['USER_MEMBERSHIP_LEVEL'] != "Administrator") && ($user['USER_MEMBERSHIP_LEVEL'] != "Moderator") ) ) {

Preview still says you are over, but this overrides the check for Admins and Mods smile
Posted By: AllenAyres Re: No Signature Limit for Admins/Mods - 08/04/2006 3:43 PM
that'll work for everyone except gizzy wink

thanks ron smile
Posted By: Gizmo Re: No Signature Limit for Admins/Mods - 08/04/2006 11:50 PM
:mumbles: rumor has it that rick dropped the pm inbox limit for admins becasue of you allen...
Posted By: Mythotical Re: No Signature Limit for Admins/Mods - 07/14/2012 9:18 AM
7.5+ version can be found here: https://www.ubbdev.com/forums/ubbthreads.php/topics/318927.html
© UBB.Developers