Taxonomy Tools Redirect module does take port number with external link redirections. This small patch solves the problem.

-      $path = $url['scheme'] . '://' . $url['host'] . $url['path'];
+      $path = $url['scheme'] . '://' . $url['host']. (isset($url['port']) ? ':'.$url['port'] : '') . $url['path'];
CommentFileSizeAuthor
taxonomy_tools_redirect_module.patch645 bytesSebaZ
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

martins.bertins’s picture

Assigned: SebaZ » Unassigned
Status: Needs review » Fixed
Issue tags: -patch proposal

Patch committed

Status: Fixed » Closed (fixed)

Automatically closed - issue fixed for 2 weeks with no activity.