Ok i've got a prob with this hack. If a user who in not logged in clicks the post reply button, they are then asked to log in but then they are taken to a 'no thread specified' error instead of the post reply screen .... looking at the url they are being sent to, it looks fine except that it is missing the &threadid=xxx part of the url. Everything works fine if the user is logged in before they click the link. I'm using 2.2.9 any clues why this is happening?
EDIT: I've fixed the problem, this is how I did it:
In the install instructions, I changed the line that says:
Code:
<form action="newreply.php" method="POST">
to read:
Code:
<form action="newreply.php?threadid=$threadid" method="POST">
That's it! Problem fixed.