When I put the option to open the forward form in a colorbox I always get redirected to the homepage after submitting te form.
It should redirect to the page you forwarded, or am I wrong here?
When I put the option to open the forward form in a colorbox I always get redirected to the homepage after submitting te form.
It should redirect to the page you forwarded, or am I wrong here?
Comments
Comment #1
SandraVdv commentedIn the forward.module on line 1152 the following code exists:
Why is
drupal_lookup_path('alias', $returnurl)used? It returns nothing if no alias is found...if
drupal_get_path_alias($returnurl)would be used it would return the alias if found, otherwise the internal drupal path. In that case a path/url is always returned and it will always redirect to the page you just forwarded.Comment #2
john.oltman commentedAgreed, this change has been committed and will be in the next DEV build.