Fixed issue with redirect of a page getting moved to a different location

This commit is contained in:
Djamil Legato
2016-12-07 12:56:00 -08:00
parent 27ad9a24eb
commit 906c090bd4
2 changed files with 3 additions and 0 deletions

View File

@@ -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

View File

@@ -902,6 +902,8 @@ class Page
$this->route(Grav::instance()['pages']->root()->route() . '/' . $this->slug());
}
$this->raw_route = null;
return $this;
}