aboutsummaryrefslogtreecommitdiff
path: root/app/controllers/contact.controller.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers/contact.controller.php')
-rw-r--r--app/controllers/contact.controller.php7
1 files changed, 2 insertions, 5 deletions
diff --git a/app/controllers/contact.controller.php b/app/controllers/contact.controller.php
index 504b979..797cccd 100644
--- a/app/controllers/contact.controller.php
+++ b/app/controllers/contact.controller.php
@@ -10,19 +10,16 @@ if ($_SERVER['REQUEST_METHOD'] === 'POST') {
$form->spam = $spam = $_POST['agree'] ?? false;
if ($form->empty()) {
- include '../app/views/contact.view.php';
- return;
+ return http_response_code(403);
}
if ($form->spam()) {
- error_log('Contact Form Spam: Error 403');
return http_response_code(403);
}
if ($form->emailValid() === false) {
$emailError = 'Invalid email: ' . "\r" . '<b>'. $email . '</b>';
- include '../app/views/contact.view.php';
- return;
+ return include '../app/views/contact.view.php';
}
$formSuccess = true;