diff options
author | Thedro Neely <thedroneely@gmail.com> | 2019-06-29 13:57:45 -0400 |
---|---|---|
committer | Thedro Neely <thedroneely@gmail.com> | 2019-06-29 13:57:45 -0400 |
commit | 2345070d796bad4925b38d6e9da188ffda23c6ee (patch) | |
tree | 5f3f42c6ef455bbd74727c8474ab941eb332012e /bootstrap | |
parent | 0268f14255191dfb1a4b65169c83bc15a621935d (diff) | |
download | edwinmattiacci.com-2345070d796bad4925b38d6e9da188ffda23c6ee.tar.gz edwinmattiacci.com-2345070d796bad4925b38d6e9da188ffda23c6ee.tar.bz2 edwinmattiacci.com-2345070d796bad4925b38d6e9da188ffda23c6ee.zip |
bootstrap/Functions: Syntax adjustments
Diffstat (limited to 'bootstrap')
-rw-r--r-- | bootstrap/Functions.php | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/bootstrap/Functions.php b/bootstrap/Functions.php index 9bd0e82..cf2f6a2 100644 --- a/bootstrap/Functions.php +++ b/bootstrap/Functions.php @@ -41,18 +41,18 @@ function sendMail($name, $email, $message) function title() { switch ($_SERVER['REQUEST_URI']) { - case '/feedback/': - $uri = $_SERVER['REQUEST_URI']; - echo $titleHeader = 'Feedback'; - break; - - case '/contact/': - $uri = $_SERVER['REQUEST_URI']; - echo $titleHeader = 'Contact'; - break; - - default: - $uri = '/'; - echo $titleHeader = 'Voiceover'; + case '/feedback/': + $uri = $_SERVER['REQUEST_URI']; + echo $titleHeader = 'Feedback'; + break; + + case '/contact/': + $uri = $_SERVER['REQUEST_URI']; + echo $titleHeader = 'Contact'; + break; + + default: + $uri = '/'; + echo $titleHeader = 'Voiceover'; } } |