Commit bb26d643 authored by Jen Lampton's avatar Jen Lampton Committed by renatog
Browse files

Issue #2209995 by jenlampton, RenatoG: formatter "URL, as link" throws error...

Issue #2209995 by jenlampton, RenatoG: formatter "URL, as link" throws error when displayed via Display Suite
parent d6141aa7
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -1449,6 +1449,12 @@ function theme_link_formatter_link_url($vars) {
  }
  unset($link_options['title']);
  unset($link_options['url']);

  if (!isset($vars['element']['display_url'])) {
    // Display suite sometimes does not set 'display_url'.
    $vars['element']['display_url'] = $vars['element']['url'];
  }

  return l($vars['element']['display_url'], $vars['element']['url'], $link_options);
}