Issue #2347987 by martin107: Fixed Broken l() in reportPlugin.
parent
abf6332f7e
commit
51a6720f04
|
@ -120,7 +120,7 @@ class ViewsUIController extends ControllerBase {
|
||||||
foreach ($rows as &$row) {
|
foreach ($rows as &$row) {
|
||||||
// Link each view name to the view itself.
|
// Link each view name to the view itself.
|
||||||
foreach ($row['views'] as $row_name => $view) {
|
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']));
|
$row['views'] = SafeMarkup::set(implode(', ', $row['views']));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue