Issue #2347987 by martin107: Fixed Broken l() in reportPlugin.

8.0.x
Alex Pott 2014-10-01 16:03:00 +02:00
parent abf6332f7e
commit 51a6720f04
1 changed files with 1 additions and 1 deletions

View File

@ -120,7 +120,7 @@ class ViewsUIController extends ControllerBase {
foreach ($rows as &$row) {
// Link each view name to the view itself.
foreach ($row['views'] as $row_name => $view) {
$row['views'][$row_name] = $this->l($view, 'entity.view.edit_form', array('view' => $view));
$row['views'][$row_name] = $this->l($view, new Url('entity.view.edit_form', array('view' => $view)));
}
$row['views'] = SafeMarkup::set(implode(', ', $row['views']));
}