Skip to content
Snippets Groups Projects
Commit 58f51c50 authored by Helmut Hummel's avatar Helmut Hummel Committed by Helmut Hummel
Browse files
parent f615301f
Branches
Tags
No related merge requests found
...@@ -390,7 +390,7 @@ class Request implements RequestInterface ...@@ -390,7 +390,7 @@ class Request implements RequestInterface
$this->internalArguments[$argumentName] = $value; $this->internalArguments[$argumentName] = $value;
return; return;
} }
if ($argumentName[0] !== '@') { if (!in_array($argumentName, array('@extension', '@subpackage', '@controller', '@action', '@format', '@vendor'), true)) {
$this->arguments[$argumentName] = $value; $this->arguments[$argumentName] = $value;
} }
} }
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment