From 9be891ce202df7ef7ec3f5cc60d03d6e39da680c Mon Sep 17 00:00:00 2001 From: Jonathan Bardo Date: Thu, 19 Dec 2013 17:26:50 -0500 Subject: [PATCH] Fixed undefined variable --- connectors/comments.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/connectors/comments.php b/connectors/comments.php index 87348e6ff..332bf1833 100644 --- a/connectors/comments.php +++ b/connectors/comments.php @@ -341,7 +341,7 @@ public static function callback_transition_comment_status( $new_status, $old_sta self::log( __( '%s\'s comment %s', 'stream' ), compact( 'user_name', 'new_status', 'old_status', 'post_title', 'post_id', 'user_id' ), - $comment_id, + $post_id, array( 'comments' => $new_status ) ); }