wmdeit_kaform/delete.php

12 lines
148 B
PHP
Raw Normal View History

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