Click Out on stats page.

Boardhopper

Member
When clicking the url link while on the stats page Visiolist does not register it as a Click out. Can someone confirm this for me to see if it actually counts the click out on the stats page? Thanks.
 

Mark

Administrator
Staff member
confirmed, in IE it actually produces a javascript error most likely a conflict with the google charts. Will investigate further and post back here later today.
 

Mark

Administrator
Staff member
temporary fix, open wrapper.html

replace:
PHP:
function out(link,username)
//<![CDATA[
{  link.setAttribute('href','{$list_url}/index.php?a=out&u=' + username+'&go='+link.getAttribute('href'));
}
//]]>
with:

PHP:
function out(username)
//<![CDATA[
{
  image = new Image();
  image.src= '{$list_url}/index.php?a=out&u=' + username;
}
//]]>
 
Top