diff --git a/CHANGELOG.md b/CHANGELOG.md index f52621510..f4a7da838 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,7 @@ * Fix page collections problem with `@page.modular` [#1178](https://github.com/getgrav/grav/pull/1178) * Fix issue with using a multiple taxonomy filter of which one had no results, thanks to @hughbris [#1184](https://github.com/getgrav/grav/issues/1184) * Fix saving permissions in group + * Fixed issue with redirect of a page getting moved to a different location # v1.1.9-rc.2 ## 11/26/2016 diff --git a/system/src/Grav/Common/Page/Page.php b/system/src/Grav/Common/Page/Page.php index a8703b9e7..fb683cae5 100644 --- a/system/src/Grav/Common/Page/Page.php +++ b/system/src/Grav/Common/Page/Page.php @@ -902,6 +902,8 @@ class Page $this->route(Grav::instance()['pages']->root()->route() . '/' . $this->slug()); } + $this->raw_route = null; + return $this; }