Closed (fixed)
Project:
Radioactivity
Version:
6.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Feature request
Assigned:
Unassigned
Reporter:
Created:
3 May 2009 at 15:44 UTC
Updated:
14 Aug 2009 at 18:40 UTC
I do not want to count anonymous users. It looks like search engine robots are counted too. How can I limit the counting to logged in users? I could not see a option for this.
Comments
Comment #1
skiminki commentedThere's none. Next time I'm attacking Radioactivity again, I might consider adding support for this — shouldn't be a big job anyway. I'm busy at work (as always) and don't want to spend all my freetime on computers, so this could take some time. In the meantime, I you want to hack it, try changing the following line in radioactivity/plugins/radioactivity_node.module, function radioactivity_node_exit:
radioactivity_node_user_node_view(arg(1));into
global $user; if ($user->uid) radioactivity_node_user_node_view(arg(1));Comment #2
dddave commented+1 for this feature
I am pretty sure I am gonna use this module when this is implemented.
Comment #3
skiminki commentedImplemented and committed, see http://drupal.org/cvs?commit=245406 .
The commit also includes a change for submitted comment, when the comment is approved automatically. In this case, comment gets submit + publish energy.
Comment #4
mcload commentedThanks