Clean up unused appointment functions

This commit is contained in:
2020-07-16 03:11:40 +02:00
parent 5fab7775d4
commit 6bc9db9117
2 changed files with 1 additions and 13 deletions

View File

@@ -112,7 +112,7 @@ if(isset($_POST["edit_form"])){
}
if(isset($_POST["edit"])){
appointmentModification();
appointmentModification();
}
if(isset($_POST["delete"])){

View File

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