/**
  * Activates this module
  *
  * Callback for "tml_activate_security/security.php" hook in method Theme_My_Login_Admin::activate_module()
  *
  * @see Theme_My_Login_Admin::activate_module()
  * @since 6.0
  * @access public
  *
  * @param object $theme_my_login Reference to global $theme_my_login object
  */
 function activate(&$theme_my_login)
 {
     $options = Theme_My_Login_Security::init_options();
     $theme_my_login->options->set_option('security', $options['security']);
 }