
06-18-2007, 07:19 PM
|
 |
|
|
Join Date: Jul 2006
Posts: 1,131
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
On mine anyways. Thank you!
Quote:
Originally Posted by Ignicoccus
I''ve played around with this a little bit and it seems to work now:
I changed the following code :
In plugin archive_process_start
Replace:
PHP Code:
$referrer_short = ltrim($referrer_short, "www.");
with:
PHP Code:
$referrer_short = str_replace("www.", "", "$referrer_short");
and
PHP Code:
$bburl_match = ltrim($bburl_match, "www.");
with:
PHP Code:
$bburl_match = str_replace("www.", "", "$bburl_match");
and apply the same replacements in plugin global_start
This works for me and websites with beginning with "w" are shown correctly
|
|