diff options
Diffstat (limited to 'FS/FS/Conf.pm')
| -rw-r--r-- | FS/FS/Conf.pm | 15 | 
1 files changed, 15 insertions, 0 deletions
| diff --git a/FS/FS/Conf.pm b/FS/FS/Conf.pm index 2bc5e24c0..bda19c0a2 100644 --- a/FS/FS/Conf.pm +++ b/FS/FS/Conf.pm @@ -843,6 +843,21 @@ httemplate/docs/config.html      'type'        => 'checkbox',    }, +  { +    'key'         => 'security_phrase', +    'section'     => 'password', +    'description' => 'Enable the tracking of a "security phrase" with each account.  Not recommended, as it is vulnerable to social engineering.', +    'type'        => 'checkbox', +  }, + +  { +    'key'         => 'locale', +    'section'     => 'UI', +    'description' => 'Message locale', +    'type'        => 'select', +    'select_enum' => [ qw(en_US) ], +  }, +  );  1; | 
