Ahh, there we go. Okay, I'll give you the line numbers + the code, including some surrounding code to give context. As I said, my codebase has been heavily modified, so the line numbers I give may not match up with your line numbers. :-/ I am working on getting all of my custom code moved into modules, that way it will be much easier to compare code...but that is still a work in progress.
comment.php line 65:
$vars = array('user_id' => $comment_author,'operation' => '1');
check_actions('points', $vars);
$link='';
$vars = array('comment'=>&$this);
check_actions('comment_post_save', $vars);
comment.php line 273:
$vars = array('user_id' => $this->author,'operation' => '5');
check_actions('points', $vars);
$link='';
libs\comment.php line 69:
$vars = array('user_id' => $comment_author,'operation' => '1');
check_actions('points', $vars);
$link='';
$vars = array('comment'=>&$this);
check_actions('comment_post_save', $vars);
libs\comment.php line 285:
$link->read();
//$link->update_karma($this->author,5);
$vars = array('user_id' => $this->author,'operation' => '5');
check_actions('points', $vars);
$link='';
lib\link.php line 956/958:
$vars = array('user_id' => $this->author,'operation' => '4');
check_actions('points', $vars);
$vars = array('user_id' => $user,'operation' => '3');
check_actions('points', $vars);
return $vote->reports();
lib\link.php line 1055:
$this->store_basic();
$this->check_should_publish();
//$this->update_karma($current_user->user_id,2);
$vars = array('user_id' => $current_user->user_id,'operation' => '2');
check_actions('points', $vars);
submit.php line 341:
$vars = array('user_id' => $linkres->author,'operation' => '0');
check_actions('points', $vars);
Dave.