Quote:
Originally posted by Boofo
The delte button is still there (without your hack installed) even if it is turned off. It just gives you the "Can't delete" error message. If your hack is installed, the button is NOT shown. It works great for that part of it. But if you have the WYSIWYG hack installed, it is still shown in there unless I put the $deletepost in there. Then it doesn't show. But is also doesn't show even if you are allowed to delete messages in the WYSIWYG editor for some reason. Any ideas on how to make it work for that too?
|
in editpost.php i have this and it works:
PHP Code:
if ( ($enableHTMLEdit == 1) AND ( ($bbuserinfo['enablewysiwyg']) ) ) {
if ( ($bbuserinfo[usergroupid] == 6) OR (ismoderator($threadinfo[forumid],"candeleteposts")) ){
eval("\$deletepost = \"".gettemplate("editpost_delete")."\";");
} else {
$deletepost = "";
}
eval("dooutput(\"".gettemplate("editpost_wysiwyg")."\");");
} else {
if ( ($bbuserinfo[usergroupid] == 6) OR (ismoderator($threadinfo[forumid],"candeleteposts")) ){
eval("\$deletepost = \"".gettemplate("editpost_delete")."\";");
} else {
$deletepost = "";
}
eval("dooutput(\"".gettemplate("editpost")."\");");
}
of course as you said you have to put $deletepost in template editpost_wysiwyg and delete the part of the form.