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.

ajax_unclaim_report.php 392B

123456789101112131415161718192021
  1. <?php
  2. #declare(strict_types=1);
  3. if (!check_perms('site_moderate_forums') || empty($_POST['id']) || empty($_POST['remove'])) {
  4. print
  5. json_encode(
  6. array(
  7. 'status' => 'failure'
  8. )
  9. );
  10. die();
  11. }
  12. $ID = (int)$_POST['id'];
  13. $DB->query("UPDATE reports SET ClaimerID = '0' WHERE ID = '$ID'");
  14. print
  15. json_encode(
  16. array(
  17. 'status' => 'success',
  18. )
  19. );
  20. die();