..AND there is one other thing you'll want to do!
Look for
Code:$sql = "SELECT * FROM `videos` WHERE `video_type`='public' AND `video_active`='1' ORDER BY `video_view_time` DESC LIMIT 0, 5";
Change it to
They left off the "approved" part...right now if you have unapproved videos in your queue, they will still show on the flash file.Code:$sql = "SELECT * FROM `videos` WHERE `video_type`='public' AND `video_active`='1' AND `video_approve`='1' ORDER BY `video_view_time` DESC LIMIT 0, 5";
Bookmarks