Skip to content

Commit

Permalink
Update Aauth.php
Browse files Browse the repository at this point in the history
reset_password has no password generated
  • Loading branch information
REJack committed Aug 15, 2014
1 parent b4f2574 commit bd75de2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/libraries/Aauth.php
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,7 @@ public function reset_password($user_id, $ver_code){
$query = $this->CI->db->where('verification_code', $ver_code);
$query = $this->CI->db->get( $this->config_vars['users'] );

$pass = random_string('alphanum',8);
$pass = random_string('alnum',8);

if( $query->num_rows() > 0 ){

Expand Down

0 comments on commit bd75de2

Please sign in to comment.