http://cgit.drupalcode.org/multiblock/commit/multiblock.module?h=8.x-1.x... introduces a php error `.' '. l(t('Delete'), 'admin/structure/block/instances/delete/'. $row->delta);` needs to be updated / commented out

@@ -387,8 +387,11 @@ function theme_multiblock_general($variables) {
   
   $rows = array();
   foreach ($multiblocks as $row) {
-    $ops_link = l(t('Edit'), 'admin/structure/block/instances/edit/'. $row->delta)
+    // @FIXME
+// l() expects a Url object, created from a route name or external URI.
+// $ops_link = l(t('Edit'), 'admin/structure/block/instances/edit/'. $row->delta)
       .' '. l(t('Delete'), 'admin/structure/block/instances/delete/'. $row->delta);
+
     $title = multiblock_get_block_title($row->module, $row->orig_delta);
     $mb_enabled = $noyes[$row->multi_settings];
     $alt = t('Not Multiblock enabled');

Comments

L-four created an issue. See original summary.

L-four’s picture

Issue summary: View changes
L-four’s picture

Issue summary: View changes
chaitanya17’s picture

Assigned: Unassigned » chaitanya17
intrafusion’s picture

Assigned: chaitanya17 » Unassigned
Status: Active » Closed (outdated)

This module is not required in Drupal 8 as it's functionality can be achieved using Core functionality