Skip to content

Commit

Permalink
Changed hardcoded reference to users table in model
Browse files Browse the repository at this point in the history
  • Loading branch information
sjelfull committed Nov 7, 2011
1 parent 8602ace commit 345c1e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion models/ion_auth_model.php
Original file line number Diff line number Diff line change
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 345c1e6

Please sign in to comment.