Fix double slash in path

This commit is contained in:
Flavio Copes
2015-08-03 11:46:55 +02:00
parent b870fffcbe
commit 1d2fc734ec

View File

@@ -821,9 +821,9 @@ class AdminController
}
}
// Always redirect if a page was change, to refresh it
// Always redirect if a page route was changed, to refresh it
if ($obj instanceof Page\Page) {
$this->setRedirect($this->view . '/' . $obj->route());
$this->setRedirect($this->view . $obj->route());
}
return true;