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

cyberswat’s picture

Status: Needs review » Fixed

Status: Fixed » Closed (fixed)

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