wmdeit_kaform/delete.php

12 lines
148 B
PHP
Raw Normal View History

2020-02-20 13:45:47 +00:00
<?php
session_start();
if (!isset($_POST['id']))
return;
unset( $_SESSION['files'][$_POST['id']] );
2021-06-29 16:42:48 +00:00
#error_log("Delete Document $_POST[id]");
2020-02-20 13:45:47 +00:00