update drupal
This commit is contained in:
@@ -60,10 +60,15 @@ class FieldLink extends ProcessPluginBase {
|
||||
*/
|
||||
protected function canonicalizeUri($uri) {
|
||||
// If we already have a scheme, we're fine.
|
||||
if (empty($uri) || parse_url($uri, PHP_URL_SCHEME)) {
|
||||
if (parse_url($uri, PHP_URL_SCHEME)) {
|
||||
return $uri;
|
||||
}
|
||||
|
||||
// Empty URI and non-links are allowed.
|
||||
if (empty($uri) || in_array($uri, ['<nolink>', '<none>'])) {
|
||||
return 'route:<nolink>';
|
||||
}
|
||||
|
||||
// Remove the <front> component of the URL.
|
||||
if (strpos($uri, '<front>') === 0) {
|
||||
$uri = substr($uri, strlen('<front>'));
|
||||
|
||||
Reference in New Issue
Block a user