Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / web / modules / contrib / redirect / src / Plugin / migrate / process / d7 / PathRedirect.php
index 44659a3d9e2f1e2e596957b32006747f1a57ef3c..0f4417096dffa739960a03e32900aea4ab15eb55 100644 (file)
@@ -43,6 +43,9 @@ class PathRedirect extends ProcessPluginBase {
         // Add it to the end of the url.
         $uri .= '?' . http_build_query($options['query']);
       }
+      if (!empty($options['fragment'])) {
+        $uri .= '#' . $options['fragment'];
+      }
     }
 
     return $uri;