Uh-oh, that text file generated some uneccesary slashes on the template and SQL query. I hate it how vBhacker sometimes does that. Here's the correct code
Code:
+-------------------------------------------------------------------------------------------------+
| Create a new template named "postbit_report" with this: |
+-------------------------------------------------------------------------------------------------+
<a href="report.php?s=$session[sessionhash]&postid=$post[postid]">Report this post to a moderator</a>
+-------------------------------------------------------------------------------------------------+
+
+++
+
+-------------------------------------------------------------------------------------------------+
| In the "postbit" template, replace this code: |
+-------------------------------------------------------------------------------------------------+
<a href="report.php?s=$session[sessionhash]&postid=$post[postid]">Report this post to a moderator</a> | $post[iplogged]
+-------------------------------------------------------------------------------------------------+
+-------------------------------------------------------------------------------------------------+
| With this code: |
+-------------------------------------------------------------------------------------------------+
$post[ipreport]
+-------------------------------------------------------------------------------------------------+
+
+++
+
+-------------------------------------------------------------------------------------------------+
| Run this query: |
+-------------------------------------------------------------------------------------------------+
alter table user add column canreportposts smallint(6) DEFAULT '1' NOT NULL;
+-------------------------------------------------------------------------------------------------+