Auth SSL Redirect only acts on user->id == 0, as seen below in the code snippet from the module, which in counter to the description on the project page — 

Redirect authenticated users to HTTPS version of page when they visit over HTTP

.

/**
 * Implementation of hook_boot().
 */
function auth_ssl_redirect_boot() {
  global $base_root, $base_url, $user;

  if (!isset($_SERVER['HTTPS']) && !$user->uid && isset($_COOKIE['AUTHSSL'])) {
    ...
  }
CommentFileSizeAuthor
#1 non-anon-redirect--2331809-1.patch567 bytesgg4
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

gg4’s picture

gg4’s picture

Status: Active » Needs review