Yes they are sure - the coppermine.php script isnt set to check for approvals , it just randomly checks all the files. Luckily i have a fix for that if you wish
change the code in coppermine.php line 27 from
Code:
$MZresult = @mysql_query("SELECT * FROM ".$prefix."_pictures ORDER BY RAND() LIMIT 0,$amount");
to
Code:
$MZresult = @mysql_query("SELECT * FROM ".$prefix."_pictures WHERE approved='YES' ORDER BY RAND() LIMIT 0,$amount");
and your in business again with only approved photos showing.
Anyone with VBadvanced , you can get the module for it here :
https://vborg.vbsupport.ru/showthread.php?t=119432