Skip to content
Snippets Groups Projects
Commit e08ce5df authored by ressa's avatar ressa Committed by C_Logemann
Browse files

Issue #3187256 by ressa, parasite: Multiple values in link fields are not processed

parent 98e2a857
No related branches found
No related tags found
No related merge requests found
......@@ -54,7 +54,7 @@ abstract class LinkExtractorBase extends PluginBase implements LinkExtractorInte
$urls = [];
foreach ($value as $item) {
$urls += $this->extractUrlFromField($item);
$urls = array_merge($urls, $this->extractUrlFromField($item));
}
return $urls;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment