Gazelle/sections/tools/managers/recommend_restore.php

18 lines
469 B
PHP
Raw Normal View History

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