Is it me?
Or is there no change in step 6?
code:
Step 6.
In your viewunapproved.php script find this:
// ----------------------------------------
// Grab the unapproved posts for this board
$Keyword_q = addslashes($Keyword);
$query = "
SELECT B_Number,B_Subject,B_Username,B_Posted
FROM {$config['tbprefix']}Posts
WHERE B_Approved = 'no'
AND B_Board = '$Keyword_q'
ORDER BY B_Posted DESC
";
and change it to this:
// ----------------------------------------
// Grab the unapproved posts for this board
$Keyword_q = addslashes($Keyword);
$query = "
SELECT B_Number,B_Subject,B_Username,B_Posted
FROM {$config['tbprefix']}Posts
WHERE B_Approved = 'no'
AND B_Board = '$Keyword_q'
ORDER BY B_Number DESC
";