Add files via upload

This commit is contained in:
Justin 2022-07-20 09:44:40 -04:00 committed by GitHub
commit d163e1ced8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
22 changed files with 2008 additions and 1 deletions

12
settings/unblock.php Normal file
View file

@ -0,0 +1,12 @@
<?php
require_once("../inc/conx.php");
if($logged_in == false) {
header("location: /");
exit();
}
// Get Block ID
$blockid = safe($_POST['i']);
if(isset($blockid)) {
mysqli_query($conx, "DELETE FROM blocking WHERE id='$blockid' && uid='$u_uid'");
}
?>