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.

take_global_notification.php 405B

1234567891011121314
  1. <?php
  2. #declare(strict_types=1);
  3. if (!check_perms("users_mod")) {
  4. error(404);
  5. }
  6. if ($_POST['set']) {
  7. $Expiration = $_POST['length'] * 60;
  8. NotificationsManager::set_global_notification($_POST['message'], $_POST['url'], $_POST['importance'], $Expiration);
  9. } elseif ($_POST['delete']) {
  10. NotificationsManager::delete_global_notification();
  11. }
  12. header("Location: tools.php?action=global_notification");