diff --git a/securepages.module b/securepages.module
index 7c3f077..e2bff57 100644
--- a/securepages.module
+++ b/securepages.module
@@ -68,7 +68,7 @@ function securepages_menu() {
  * Implements hook_form_alter().
  */
 function securepages_form_alter(&$form, &$form_state, $form_id) {
-  global $is_https, $user;
+  global $is_https;
 
   if (!variable_get('securepages_enable', 0)) {
     return;
@@ -81,13 +81,6 @@ function securepages_form_alter(&$form, &$form_state, $form_id) {
     $path = drupal_get_normal_path($url['path']);
 
     $page_match = securepages_match($path);
-    $role_match = securepages_roles($user);
-    if ($role_match) {
-      if (!$is_https) {
-        $form['#https'] = TRUE;
-      }
-      return;
-    }
 
     if ($page_match && !$is_https) {
       $form['#https'] = TRUE;
