Hi,
I think we need this patch to have it working fine.
Starting l. 100 : add 1 line for handling https...
if (!isset($_GET["token"])) {
$url = str_replace( "http%3A/%252F", "http%3A//", $url);
drupal_goto($url);
}
Here is the new block:
if (!isset($_GET["token"])) {
$url = str_replace( "http%3A/%252F", "http%3A//", $url);
$url = str_replace( "https%3A/%252F", "https%3A//", $url);
drupal_goto($url);
}
Comments
Comment #1
cyberswat commentedhttp://drupal.org/cvs?commit=231182