forked from tohe/wmdeit_kaform
12 lines
147 B
PHP
12 lines
147 B
PHP
|
<?php
|
||
|
session_start();
|
||
|
|
||
|
if (!isset($_POST['id']))
|
||
|
return;
|
||
|
|
||
|
|
||
|
unset( $_SESSION['files'][$_POST['id']] );
|
||
|
error_log("Delete Document $_POST[id]");
|
||
|
|
||
|
|