Closed (won't fix)
Project:
Urlfilter
Version:
4.6.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
2 Dec 2011 at 12:05 UTC
Updated:
3 Feb 2013 at 17:56 UTC
1)Install URL alter (http://drupal.org/project/url_alter) module
2)and put the code like this in your custom module..
function hook_url_outbound_alter(&$path, &$options, $original_path) {
global $user;
// Change all links to the user's profile edit page to a path 'e'.
if($original_path=="user/register"){
$path = "user/register";
$options['query'] = drupal_get_destination();
}
}
Comments
Comment #1
pomliane commentedThis version of Urlfilter is not supported anymore. The issue is closed for this reason.
Please upgrade to a supported version and feel free to reopen the issue on the new version if applicable.
This issue has been automagically closed by a script.