Post
Topic
Board Announcements (Altcoins)
Re: [ANN] SuperHeroCoin (SHC) | launched 30 January 2014 | update : POOL BUG FIXED!
by
SuperHeroCoin
on 30/01/2014, 19:52:05 UTC
I will close the details, is withdraw and changepw also close?

Pelase give me your suggest!

Code:
/**
 * E-mail confirmations for user actions
 *
 * Explanation:
 *   To increase security for users, account detail changes can require
 *   an e-mail confirmation prior to performing certain actions.
 *
 * Options:
 *   enabled   :  Whether or not to require e-mail confirmations
 *   details   :  Require confirmation to change account details
 *   withdraw  :  Require confirmation to manually withdraw/payout
 *   changepw  :  Require confirmation to change password
 *
 * Default:
 *   enabled   =  true
 *   details   =  true
 *   withdraw  =  true
 *   changepw  =  true
 */
$config['twofactor']['enabled'] = true;
$config['twofactor']['options']['details'] = true;
$config['twofactor']['options']['withdraw'] = true;
$config['twofactor']['options']['changepw'] = true;