Fix for using route name as check_path.

This commit is contained in:
Johannes 2012-04-05 12:20:11 +03:00
parent e4ebffb01b
commit 0024ddce9c

View File

@ -274,7 +274,7 @@ class MainConfiguration implements ConfigurationInterface
continue;
}
if (!preg_match('#'.$firewall['pattern'].'#', $firewall[$k]['check_path'])) {
if (false !== strpos('/', $firewall[$k]['check_path']) && !preg_match('#'.$firewall['pattern'].'#', $firewall[$k]['check_path'])) {
throw new \LogicException(sprintf('The check_path "%s" for login method "%s" is not matched by the firewall pattern "%s".', $firewall[$k]['check_path'], $k, $firewall['pattern']));
}
}