Codex tools: Log in
<?php
add_action('wp_insert_comment','comment_inserted',99,2);
function comment_inserted($comment_id, $comment_object) {
if ($comment_object->comment_parent > 0) {
//do something
}
}
?>
wp_insert_comment action hook is located in wp-includes/comment.php