Quote:
Originally Posted by OnR
And there is a fix for Tag Minimum Length...
Original line in the product is ;
Code:
if(strlen($tagtext) > 3 && !in_array(strtolower($tagtext), $badwords))
Change to ;
Code:
if(strlen($tagtext) > $vbulletin->options['tagminlen'] && !in_array(strtolower($tagtext), $badwords))
So when you change the tag minimum length option in admincp , AT will work good.
|
could u add any hack code to prevent auto tag for this kind of word:
02/12/2007
and so on
or replace the "/" in the tag to be "-"
thanks