When it says in the instructions to find:
Code:
if ($s!=$session['dbsessionhash']) {
and replace it with:
Code:
if ($s!=$session['dbsessionhash'] && $reasonentered!=1) {
You are actually supposed to find:
Code:
$s == $session['dbsessionhash'] )) {
and replaced it with:
Code:
$s == $session['dbsessionhash'] && $reasonentered!=1)) {
That made everything show.
I am having a small problem though. When you close a topic and put in the reason it works fine but when you open it the reason stays there except it isn't in the box.
Dark Shogun