<?php defined('C5_EXECUTE') or die("Access Denied.");
use ConcreteCoreConversationMessageMessage as ConversationMessage;
if (Loader::helper('validation/numbers')->integer($_POST['cnvMessageID']) && $_POST['cnvMessageID'] > 0) {
$msg = ConversationMessage::getByID($_POST['cnvMessageID']);
echo $msg->getConversationMessageTotalRatingScore();
}