JJR512
Mon 16th Apr '01, 3:59am
This little hack of mine isn't much. It's just that I didn't really like the look of the text link to "Report this post to a Moderator", especially in the message body area. So I did two things: I made a button that says "report", in the same style as the other buttons in a message, and I placed it in the same section, to the right of the "edit/delete" button. I just think it looks nicer that way.
It's very simple to do.
First, upload the attached image to your images directory, the same place where you find the files edit.gif, profile.gif, etc. (Note that I have made this button in a blue shade, since that is my site's look. You can easily make it the default vBulletin purple, or any other color, with Paint, which comes with Windows.)
Next, in the postbit template, find this:
<p><smallfont><a href="report.php?s=$session[sessionhash]&postid=$post[postid]">Report this post to a moderator</a></smallfont></p>
Delete that entire code bit.
Next, find this:
<a href="editpost.php?s=$session[sessionhash]&action=editpost&postid=$post[postid]"><img src="{imagesfolder}/edit.gif" border="0" alt="Edit/Delete Message"></a>
After the above code bit, add this:
<a href="report.php?s=$session[sessionhash]&postid=$post[postid]"><img src="{imagesfolder}/report.gif" border="0" alt="Report this post to a moderator"></a>
It's very simple to do.
First, upload the attached image to your images directory, the same place where you find the files edit.gif, profile.gif, etc. (Note that I have made this button in a blue shade, since that is my site's look. You can easily make it the default vBulletin purple, or any other color, with Paint, which comes with Windows.)
Next, in the postbit template, find this:
<p><smallfont><a href="report.php?s=$session[sessionhash]&postid=$post[postid]">Report this post to a moderator</a></smallfont></p>
Delete that entire code bit.
Next, find this:
<a href="editpost.php?s=$session[sessionhash]&action=editpost&postid=$post[postid]"><img src="{imagesfolder}/edit.gif" border="0" alt="Edit/Delete Message"></a>
After the above code bit, add this:
<a href="report.php?s=$session[sessionhash]&postid=$post[postid]"><img src="{imagesfolder}/report.gif" border="0" alt="Report this post to a moderator"></a>