Open /public_html/plugins/RoleTitle/class.roletitle.plugin.php and find line 75 See which object is before the Result() method, for example $database->Result(); That object is interesting for the problem handling in this topic.
$Sender->CommentData is either not available in that context (or it's not an object, as the error message says. Try finding out why by examining the code 'around' line 75. Usually 10 lines above, 10 lines under line 75 will do. If for example a function starts at line 71, you don't have to look above that line, but if a function starts at line 68 or 69 then look at that part of the function till line 75 (and a bit below). Basically, you will need to find out why $Sender->CommentData is not an object, you'll find that in the code you need to take a look at.
Comments
Open /public_html/plugins/RoleTitle/class.roletitle.plugin.php and find line 75
See which object is before the Result() method, for example $database->Result();
That object is interesting for the problem handling in this topic.
There was an error rendering this rich post.
this is the line 75
RoleModel::SetUserRoles($Sender->CommentData->Result(), 'InsertUserID');
$Sender->CommentData is either not available in that context (or it's not an object, as the error message says. Try finding out why by examining the code 'around' line 75. Usually 10 lines above, 10 lines under line 75 will do. If for example a function starts at line 71, you don't have to look above that line, but if a function starts at line 68 or 69 then look at that part of the function till line 75 (and a bit below).
Basically, you will need to find out why $Sender->CommentData is not an object, you'll find that in the code you need to take a look at.
There was an error rendering this rich post.
Ok ... and thanks