I finally upgraded successfully to 6.7.1, but when I try to post more than 8 images, the post is rejected stating that no more than 8 images are allowed. In ubb_lib_posting.cgi, it has this:

Code
sub excess_smilies_check {
	my $smilie_count = () = $_[0] =~ /(<IMG.+?SRC)/gsi;
	if ($smilie_count > $vars_misc{'max_image_limit'}) {
		&StandardHTML("$vars_wordlets_err{excess_images}");
	} # end id
}    # end smilie check
I don't see a limit. Am I looking at the wrong file? I want the image maximum to be 15. This is probably answered elsewhwere, but I must be wording the search poorly, because I haven't found a post that helps. Thanks for any info.