config.php 359 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * Change Password plugin configuration vars
  4. *
  5. * NOTE: probably you need to configure your specific backend too!
  6. *
  7. * @version $Id$
  8. * @package plugins
  9. * @subpackage change_password
  10. */
  11. // the password changing mechanism you're using
  12. $cpw_backend = 'template';
  13. $cpw_pass_min_length = 4;
  14. $cpw_pass_max_length = 25;
  15. $cpw_require_ssl = FALSE;