1234567891011121314151617181920 |
- <?php
- /**
- * Change Password plugin configuration vars
- *
- * NOTE: probably you need to configure your specific backend too!
- *
- * @version $Id$
- * @package plugins
- * @subpackage change_password
- */
- // the password changing mechanism you're using
- $cpw_backend = 'template';
- $cpw_pass_min_length = 4;
- $cpw_pass_max_length = 25;
- $cpw_require_ssl = FALSE;
|