Skip to content
Snippets Groups Projects

#3250815 - Changed ID separator in messages output table to ‘:’.

1 file
+ 2
2
Compare changes
  • Side-by-side
  • Inline
@@ -685,8 +685,8 @@ class MigrateToolsCommands extends DrushCommands {
@@ -685,8 +685,8 @@ class MigrateToolsCommands extends DrushCommands {
$destination_ids[$name] = $item;
$destination_ids[$name] = $item;
}
}
}
}
$array_row['source_ids'] = implode(', ', $source_ids);
$array_row['source_ids'] = implode(':', $source_ids);
$array_row['destination_ids'] = implode(', ', $destination_ids);
$array_row['destination_ids'] = implode(':', $destination_ids);
$table[] = $array_row;
$table[] = $array_row;
}
}
if (empty($table)) {
if (empty($table)) {
Loading