Gazelle/sections/tools/managers/recommend_restore.php
2013-04-17 08:00:58 +00:00

16 lines
466 B
PHP

<?
//******************************************************************************//
//--------------- Restore all VH-recommended torrents to NL --------------------//
//---- For use after resetting the FL/NL database (after sitewide freeleech) ---//
authorize();
if (!check_perms('site_manage_recommendations')) {
error(403);
}
$DB->query('SELECT GroupID FROM torrents_recommended');
$ToNL = $DB->next_record();
Torrents::freeleech_groups($ToNL, 2, 3);
?>
Done