UBB.Dev
Posted By: slayer60 Bio length - 11/12/2003 9:50 PM
What would I need to do to change the allowable number of characters for the bio field?
Posted By: omegatron Re: Bio length - 11/12/2003 9:54 PM
In changebasic.php find this

// ------------------------------------------------
// If Bio is greater than 250, the we do not allow
if ( strlen($Bio) > 250) {
$html -> not_right($ubbt_lang['BIO_TOO_LONG'],$Cat);
}

change to something like

// ------------------------------------------------
// If Bio is greater than 250, the we do not allow
if ( strlen($Bio) > 400) {
$html -> not_right($ubbt_lang['BIO_TOO_LONG'],$Cat);
}
Posted By: slayer60 Re: Bio length - 11/12/2003 10:05 PM


Thanks Chuck.
Posted By: donJulio Re: Bio length - 11/14/2003 7:10 PM
I always thuoght that was configurable in the config.inc file. I've learned something new
Posted By: slayer60 Re: Bio length - 11/14/2003 7:14 PM
I did too, but it appears that only the signature length is configureable.
© UBB.Developers