Apologies if I'm wrong, but shouldn't there be something in the admin cp around this area IF you have the approval system enabled.?
Quote:
From here, you can control all aspects of your vBulletin forums. Please select what you need from the links down the left hand side of this page.
There are currently 0 user(s) awaiting moderation.
|
I've looked at the code in index.php and found that it does absolutely nothing, so I changed it to this:
Code:
if($approvalsystem==1){
$checkphoto=$DB_site->query_first("SELECT COUNT(*) AS visible FROM memberphoto WHERE visible=0");
if($checkphoto[count] > 1){
echo "<font size=\"1\">There are currently <b>$checkphoto[count]</b>
photos unverified, which can be checked <a href=\"pverify.php?s=$session[sessionhash]&action=verify\">here</a>.";
} else if($checkphoto[count] == 1){
echo "<font size=\"1\">There is currently <b>$checkphoto[count]</b>
photo unverified, which can be checked <a href=\"pverify.php?s=$session[sessionhash]&action=verify\">here</a>.";
}
}
but it still doesn't work.. Anyone have any ideas.?