Skip to content

Commit

Permalink
Update libraries/src/Application/CMSApplication.php
Browse files Browse the repository at this point in the history
  • Loading branch information
csthomas committed Dec 12, 2018
1 parent 37d7ae2 commit 9cc7edc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libraries/src/Application/CMSApplication.php
Expand Up @@ -1075,7 +1075,7 @@ protected function route()

$active = $this->getMenu()->getActive();

if ($this->input->getMethod() !== 'POST'
if (in_array($this->input->getMethod(), array('GET', 'HEAD'), true))
&& $active !== null
&& $active->type === 'alias'
&& $active->params->get('alias_redirect'))
Expand Down

0 comments on commit 9cc7edc

Please sign in to comment.