Ok, can you try this in that same area. About line 257 you will see this block of code:
<pre> $sth = $dbh -> do_query($query);
$rows = $dbh -> fetch_array($sth);
$dbh -> finish_sth($sth);
if ($rows[0]) {
$Viewable = "";
$ismod = "yes";
}
</pre>

Change that block, to this and then try the admin tool again:
<pre> $sth = $dbh -> do_query($query);
list($modchecker) = $dbh -> fetch_array($sth);
$dbh -> finish_sth($sth);
if ($modchecker) {
$Viewable = "";
$ismod = "yes";
}
</pre>


-------------------
Scream
<A target="_blank" HREF=http://www.wwwthreads.com>WWWThreads</A>