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 481B

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