aboutsummaryrefslogtreecommitdiff
path: root/app/model
diff options
context:
space:
mode:
authorThedro Neely <thedroneely@gmail.com>2018-11-18 19:24:48 -0500
committerThedro Neely <thedroneely@gmail.com>2018-11-18 19:24:48 -0500
commite5431f0bc316f40d86589373205cc121971cb53b (patch)
tree03c6612f4546fd9f5c8592a130983c22a21539e5 /app/model
parentdcc8e8d87f96c9409e54c43902c66727648e1f90 (diff)
downloadthedroneely.com-e5431f0bc316f40d86589373205cc121971cb53b.tar.gz
thedroneely.com-e5431f0bc316f40d86589373205cc121971cb53b.tar.bz2
thedroneely.com-e5431f0bc316f40d86589373205cc121971cb53b.zip
app/model/Form: Redirect to contact page correctly
Diffstat (limited to 'app/model')
-rw-r--r--app/model/Form.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/model/Form.php b/app/model/Form.php
index 18ac634..9d0b4a4 100644
--- a/app/model/Form.php
+++ b/app/model/Form.php
@@ -40,7 +40,7 @@ class Form
|| (bool) empty($this->email) == true
|| (bool) empty($this->message) == true
) {
- header('Location: /contact');
+ header('Location: /contact/');
exit;
}
}