2011-05-30, 05:26 PM
(This post was last modified: 2011-05-30, 05:27 PM by xHannes007.)
Here the lines from 1288 to 1311:
/**
* Add a comment via AJAX
*
*/
function profilecomments_ajax_comment()
{
if(in_array($mybb->user['usergroup'], array(4, 3, 6)))
{
return Comments::instance()->call_ajax();
}
}
/**
* Runs the Comments page
*
*/
function profilecomments_page()
{
if(in_array($mybb->user['usergroup'], array(4, 3, 6)))
{
return Comments::instance()->call_normal();
}
}