Reviewed & tested by the community
Project:
Path redirect
Version:
6.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Reporter:
Created:
7 Dec 2009 at 02:46 UTC
Updated:
4 Aug 2011 at 21:41 UTC
Jump to comment: Most recent file
Comments
Comment #1
dave reidGood find, this is a bug that I need to fix.
Comment #2
hoobuba commentedIs there any update on this? - thank you!
Comment #3
Mantis544 commentedAny news ?
http://drupal.org/node/1014358
I have the same problem... Dave ?
Comment #4
mastervissie commentedThis problem can be fixed to change 1 single line of code: change in file path_redirect.admin.inc line 443 (version 6.x-1.0-rc2) to:
$form_state['values']['redirect'] = (isset($parsed['scheme']) ? $parsed['scheme'] . '://'. $parsed['host'] : '') . (isset($parsed['port']) ? ':' . $parsed['port'] : '') . $parsed['path'];This added the port number (if exists) to the redirect variable.
Comment #5
timmillwoodHere's this as a real life patch.
Comment #7
timmillwoodSeems to be working.