Hi all.

The actions like "/logout" and "/login_check" is not works
For example when I try to load "/logout" i have an error: 'No route found 
for "GET /logout"'

But a few days ago it works fine, but than I update symfony this problem!

If use patch, that I attach, all works, but this is not right decision of 
this problem I think.

The problem is because router, can't find route, and return 404 exception.
And than request is not master

-- 
If you want to report a vulnerability issue on symfony, please send it to 
security at symfony-project.com

You received this message because you are subscribed to the Google
Groups "symfony developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/symfony-devs?hl=en
# This patch file was generated by NetBeans IDE
# It uses platform neutral UTF-8 encoding and \n newlines.
--- HEAD
+++ Modified In Working Tree
@@ -52,9 +52,11 @@
      */
     public function onCoreRequest(GetResponseEvent $event)
     {
-        if (HttpKernelInterface::MASTER_REQUEST !== $event->getRequestType()) {
+        static $handle = false;
+        if ($handle) {
             return;
         }
+	  $handle = true;
 
         // register listeners for this firewall
         list($listeners, $exception) = $this->map->getListeners($event->getRequest());

Reply via email to