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