From 4e852aab9b6f955e70556e1c309cc88344e1408f Mon Sep 17 00:00:00 2001 From: Alejandro Celaya Date: Mon, 2 May 2016 17:20:07 +0200 Subject: [PATCH] Fixed typo and added link to my website --- src/Middleware/Routable/RedirectMiddleware.php | 2 +- templates/layout/default.html.twig | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Middleware/Routable/RedirectMiddleware.php b/src/Middleware/Routable/RedirectMiddleware.php index 104acd44..85b42eb6 100644 --- a/src/Middleware/Routable/RedirectMiddleware.php +++ b/src/Middleware/Routable/RedirectMiddleware.php @@ -77,7 +77,7 @@ class RedirectMiddleware implements MiddlewareInterface $this->visitTracker->track($shortCode); // Return a redirect response to the long URL. - // Use a temporary redirect to make sure browsers aleways hit the server for analytics purposes + // Use a temporary redirect to make sure browsers always hit the server for analytics purposes return new RedirectResponse($longUrl); } catch (\Exception $e) { // In case of error, dispatch 404 error diff --git a/templates/layout/default.html.twig b/templates/layout/default.html.twig index 7c29df7a..aaec0aab 100644 --- a/templates/layout/default.html.twig +++ b/templates/layout/default.html.twig @@ -27,7 +27,7 @@
{% block footer %}

- © {{ "now" | date("Y") }} by Alejandro Celaya. + © {{ "now" | date("Y") }} by Alejandro Celaya.

{% endblock %}