Just wondering if there is a toggle somewhere. I'm still getting acquainted with all the functions.
Is it possible to turn off the check for message content before posting?Do you refer to this: http://screencast.com/t/H2iDtvQNeGVF ? If this is not the issue, perhaps you can explain more and provide us with appropriate screenshot so that we will be able to understand the issue well and able to help you fix it.
// Remove LINE 1217 until 1422
// quick_question_reply_content is from the module quick question
if( (!isset( $post[ 'dc_reply_content' ] ) || (JString::strlen($post['dc_reply_content']) == 0)) && (!isset( $post[ 'quick_question_reply_content' ] ) || JString::strlen($post['quick_question_reply_content']) == 0) )
{
$message .= '<li>' . JText::_('COM_EASYDISCUSS_POST_CONTENT_IS_EMPTY') . '</li>';
$valid = false;
}