Skip to content

Commit

Permalink
changed some default config vars
Browse files Browse the repository at this point in the history
  • Loading branch information
REJack committed Jun 3, 2015
1 parent f4c42a3 commit 239ef68
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions application/config/aauth.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

// if user don't have permisssion to see the page he will be
// redirected the page spesificed below
$config['aauth']['no_permission'] = '/';
$config['aauth']['no_permission'] = FALSE;
//name of admin group
$config['aauth']['admin_group'] = 'admin';
//name of default group, the new user is added in it
Expand Down Expand Up @@ -43,10 +43,10 @@
$config['aauth']['remember'] = ' +3 days';

// pasword maximum char long (min is 4)
$config['aauth']['max'] = 13;
$config['aauth']['max'] = 24;

// non alphanumeric characters that are allowed in a name
$config['aauth']['valid_chars'] = array(' ', '\'');
$config['aauth']['valid_chars'] = array();

// ddos protection,
//if it is true, the user will be banned temporary when he exceed the login 'try'
Expand Down

0 comments on commit 239ef68

Please sign in to comment.