Skip to content

Commit

Permalink
Merge pull request benedmunds#125 from sjelfull/2
Browse files Browse the repository at this point in the history
Changed hardcoded reference to users table in model
  • Loading branch information
benedmunds committed Nov 7, 2011
2 parents 8602ace + 345c1e6 commit b5cb869
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion models/ion_auth_model.php
Expand Up @@ -990,7 +990,7 @@ public function update($id, array $data)
}

// Filter the data passed
$data = $this->_filter_data('users', $data);
$data = $this->_filter_data($this->tables['users'], $data);

if (array_key_exists('username', $data) || array_key_exists('password', $data) || array_key_exists('email', $data))
{
Expand Down

0 comments on commit b5cb869

Please sign in to comment.