summaryrefslogtreecommitdiffstats
path: root/Http
diff options
context:
space:
mode:
authorDouglas Greenshields <dgreenshields@gmail.com>2012-05-01 14:45:52 +0100
committerDouglas Greenshields <dgreenshields@gmail.com>2012-05-01 14:45:52 +0100
commit4c19df9633964ba0adfe1e2a8293f67c8a2bf57b (patch)
tree474a21b12083af4049ef316daf9e034cb0a4dd7e /Http
parent9ed448495929292bda245fdd74753c98a35d0577 (diff)
downloadsymfony-security-4c19df9633964ba0adfe1e2a8293f67c8a2bf57b.zip
symfony-security-4c19df9633964ba0adfe1e2a8293f67c8a2bf57b.tar.gz
symfony-security-4c19df9633964ba0adfe1e2a8293f67c8a2bf57b.tar.bz2
[Security] fixed English grammar in exception message
Diffstat (limited to 'Http')
-rw-r--r--Http/Firewall/AbstractAuthenticationListener.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/Http/Firewall/AbstractAuthenticationListener.php b/Http/Firewall/AbstractAuthenticationListener.php
index 4c6689e..0e6f945 100644
--- a/Http/Firewall/AbstractAuthenticationListener.php
+++ b/Http/Firewall/AbstractAuthenticationListener.php
@@ -133,7 +133,7 @@ abstract class AbstractAuthenticationListener implements ListenerInterface
try {
if (!$request->hasPreviousSession()) {
- throw new SessionUnavailableException('Your session has timed-out, or you have disabled cookies.');
+ throw new SessionUnavailableException('Your session has timed out, or you have disabled cookies.');
}
if (null === $returnValue = $this->attemptAuthentication($request)) {