
04-24-2007, 11:00 PM
|
 |
|
|
Join Date: Sep 2002
Location: Southern Ohio
Posts: 385
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
I found this in another thread for another product here ( https://vborg.vbsupport.ru/showthrea...81#post1234781 ):
Quote:
We had a problem with this plugin inserting the nofollow tags when a user passed the 1,000 post mark. The problem was a comma inserted into the number of posts (e.g. 1,000). We fixed it by changing this line in the plug in:
PHP Code:
if (is_member_of($post, 5, 6, 7) OR $post['posts'] > 50)
to this (which strips the unwanted comma from the post count):
PHP Code:
if (!(is_member_of($post, 5, 6, 7)===FALSE) || str_replace(",","",$post['posts']) > 50)
|
I haven't tried it yet, but plan to tonight or tomorrow.
|