Gazelle/sections/tools/managers/recommend_restore.php

15 lines
463 B
PHP
Raw Normal View History

2013-01-01 08:00:24 +00:00
<?
//******************************************************************************//
//--------------- 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