--- drupal-6.13/sites/all/modules/securepages/securepages.admin.inc.org 2009-09-16 15:20:59.000000000 +0200 +++ drupal-6.13/sites/all/modules/securepages/securepages.admin.inc 2009-09-25 11:06:07.000000000 +0200 @@ -61,6 +61,12 @@ '#rows' => 5, '#description' => t("The pages listed here will be ignored and be either returned in http or https. Enter one page per line as Drupal paths. The '*' character is a wildcard. Example paths are 'blog' for the blog page and 'blog/*' for every personal blog. '<front>' is the front page."), ); + $form['securepages_login_form'] = array( + '#type' => 'checkbox', + '#title' => t('Alter login forms to use https in action url'), + '#return_value' => TRUE, + '#default_value' => variable_get('securepages_login_form', FALSE), + ); return system_settings_form($form); }