More support for redirect in admin

This commit is contained in:
Andy Miller
2015-09-11 10:47:54 -06:00
parent cc99715116
commit 6aea8f11a0
2 changed files with 3 additions and 1 deletions

View File

@@ -473,7 +473,7 @@ class Admin
$latest = array();
foreach ($pages->routes() as $url => $path) {
$page = $pages->dispatch($url);
$page = $pages->dispatch($url, true);
if ($page && $page->routable()) {
$latest[$page->route()] = ['modified' => $page->modified(), 'page' => $page];
}