Skip to content

Commit

Permalink
Adding count of visits known to Piwik to the tooltip Fixes #4319
Browse files Browse the repository at this point in the history
Note: it may be often inaccurate, so if users get confused I may revert
  • Loading branch information
mattab committed Dec 26, 2013
1 parent 5756cef commit dd9683f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/Live/templates/_dataTableViz_visitorLog.twig
Expand Up @@ -40,7 +40,7 @@
{% if visitor.getColumn('visitorTypeIcon') %}
 -
<img src="{{ visitor.getColumn('visitorTypeIcon') }}"
title="{{ 'General_ReturningVisitor'|translate }}{% if visitor.getColumn('visitorId') is not empty %}{% endif %}"/>
title="{{ 'General_ReturningVisitor'|translate }} - {{ 'General_NVisits'|translate(visitor.getColumn('visitCount')) }}"/>
{% endif %}
{% if not displayVisitorsInOwnColumn or breakBeforeVisitorRank %}<br/><br />{% endif %}
{% if visitor.getColumn('visitConverted') %}
Expand Down

0 comments on commit dd9683f

Please sign in to comment.