Quote:
Originally Posted by sv1cec
OK, I've find the problem with the icon in the search engines search strings. In the file statistic/sides/searchengines.php, you have this code:
PHP Code:
$et = "<img src='statistic/images/misc/noaktiv.gif' alt='$vbphrase[vbstatistic_searchstring_alt]' width='20' height='20' />"
This should be changed as shown below:
PHP Code:
$et = "<img src='statistic/images/misc/noaktiv.gif' alt='$keyword_alt' width='20' height='20' />";
With this change, when the cursor hovers over the  sign, you get the full search string.
Rgds
|
There is a similar problem in the refer.php too.
Find this (it's in the file twice replace both)
PHP Code:
$et = "<img src='statistic/images/misc/noaktiv.gif' alt='$vbphrase[vbstatistic_refstring_alt]' border ='0' width='14' height='14' />";
and replace it with this
PHP Code:
$et = "<img src='statistic/images/misc/noaktiv.gif' alt='$full_referer_alt' border ='0' width='14' height='14' />";
Thanks for the navbar fix sv1cec.