<?php

/*
Plugin Name: transition_comment_status Test
Plugin URI:
Description: Outputs text when the transition_comment_status hook fires
Version: 1.0
Author: Captaffy
Author URI:
*/

function tcst_transition_comment_status_fired($new_status, $old_status, $comment)
{
	echo 'transition_comment_status Fired!';
	exit;
}

add_action('transition_comment_status', 'tcst_transition_comment_status_fired', 10, 3);

?>