aboutsummaryrefslogtreecommitdiff
path: root/admin/api/deleteURL.php
diff options
context:
space:
mode:
authorMinteck <contact@minteck.org>2022-01-01 10:37:28 +0100
committerMinteck <contact@minteck.org>2022-01-01 10:37:28 +0100
commitef055e79855cf3be1ad5e1aa5f9ebad480062384 (patch)
treeff074b29a7a87c3ccfc3b10741bbe30cb28e103e /admin/api/deleteURL.php
parente3a79df6428799024eac64e9cffbb062317aeb95 (diff)
downloadmain-ef055e79855cf3be1ad5e1aa5f9ebad480062384.tar.gz
main-ef055e79855cf3be1ad5e1aa5f9ebad480062384.tar.bz2
main-ef055e79855cf3be1ad5e1aa5f9ebad480062384.zip
Bye furriesHEADtrunk
Diffstat (limited to 'admin/api/deleteURL.php')
-rw-r--r--admin/api/deleteURL.php23
1 files changed, 0 insertions, 23 deletions
diff --git a/admin/api/deleteURL.php b/admin/api/deleteURL.php
deleted file mode 100644
index 895751e..0000000
--- a/admin/api/deleteURL.php
+++ /dev/null
@@ -1,23 +0,0 @@
-<?php
-
-require_once $_SERVER['DOCUMENT_ROOT'] . "/admin/private/header.api.php";
-
-if (isset($_GET['_']) && strpos($_GET['_'], "/") === false) {
- $arg = $_GET['_'];
-} else {
- die();
-}
-
-$urls = explode("\n", file_get_contents("/mnt/minteckrolt-urls/links.txt"));
-$newUrlsArr = [];
-
-foreach ($urls as $url) {
- if (explode(" ", $url)[0] !== $arg) {
- $newUrlsArr[] = $url;
- }
-}
-
-file_put_contents("/mnt/minteckrolt-urls/links.txt", implode("\n", $newUrlsArr));
-
-header("Location: /admin/panes/shortens.php");
-die(); \ No newline at end of file