Clean up unused appointment functions

This commit is contained in:
coolneng 2020-07-16 03:11:40 +02:00
parent 5fab7775d4
commit 6bc9db9117
Signed by: coolneng
GPG Key ID: 9893DA236405AF57
2 changed files with 1 additions and 13 deletions

View File

@ -33,13 +33,6 @@ function reportDeletion()
} }
function printPDF()
{
$id = $_GET["print_pdf"];
header('location: report.php');
}
if (isset($_POST["create"])) { if (isset($_POST["create"])) {
reportCreation(); reportCreation();
} }
@ -53,8 +46,3 @@ if (isset($_POST["edit"])) {
if (isset($_GET["delete"])) { if (isset($_GET["delete"])) {
reportDeletion(); reportDeletion();
} }
if (isset($_GET["print_pdf"])) {
printPDF();
}