Skip to content

Commit

Permalink
fixed error with user_exist_by_name()
Browse files Browse the repository at this point in the history
  • Loading branch information
REJack committed Jun 2, 2016
1 parent 89e715e commit 330028b
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 @@ -1098,7 +1098,7 @@ public function user_exist_by_username( $name ) {
* @return bool
*/
public function user_exist_by_name( $name ) {
return $this->user_exist_by_name($name);
return $this->user_exist_by_username($name);
}

/**
Expand Down

0 comments on commit 330028b

Please sign in to comment.