BioTorrents.de’s version of Gazelle
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

mass_edit.php 507B

123456789101112131415161718192021
  1. <?php
  2. #declare(strict_types=1);
  3. authorize();
  4. if ($UserID !== $LoggedUser['ID']
  5. || !Bookmarks::can_bookmark('torrent')) {
  6. error(403);
  7. }
  8. if ($_POST['type'] === 'torrents') {
  9. // require_once SERVER_ROOT.'/classes/mass_user_bookmarks_editor.class.php'; // Bookmark Updater Class
  10. $BU = new MASS_USER_BOOKMARKS_EDITOR;
  11. if ($_POST['delete']) {
  12. $BU->mass_remove();
  13. } elseif ($_POST['update']) {
  14. $BU->mass_update();
  15. }
  16. }
  17. header('Location: bookmarks.php?type=torrents');