2012-04-09, 09:02 AM
Maybe it s a stupide question. But i do a plugin and i need to know if with the plugins installation we can edit a file.php like we can edit a template ? If yes how ?
Because on online.php we can find this code :
and i need to remplace it by :
thank in advance
Because on online.php we can find this code :
if($mybb->usergroup['canviewonline'] == 0)
{
error_no_permission();
}
and i need to remplace it by :
if($mybb->user['uid'] == 0 || $mybb->usergroup['canmodcp'] != 1)
{
error_no_permission();
}
thank in advance