Skip to content

Commit

Permalink
Fixed issue with redirect of a page getting moved to a different loca…
Browse files Browse the repository at this point in the history
…tion
  • Loading branch information
w00fz committed Dec 7, 2016
1 parent 27ad9a2 commit 906c090
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 2 additions & 0 deletions system/src/Grav/Common/Page/Page.php
Original file line number Diff line number Diff line change
Expand Up @@ -902,6 +902,8 @@ public function move(Page $parent)
$this->route(Grav::instance()['pages']->root()->route() . '/' . $this->slug());
}

$this->raw_route = null;

return $this;
}

Expand Down

0 comments on commit 906c090

Please sign in to comment.