Skip to content

Commit

Permalink
fixes #344
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Kacerguis committed Aug 29, 2014
1 parent 3e3c83e commit e4c0b12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/libraries/REST_Controller.php
Original file line number Diff line number Diff line change
Expand Up @@ -1281,7 +1281,7 @@ protected function _perform_library_auth($username = '', $password = null)
$this->load->library($auth_library_class);
}

return $auth_library_class->$auth_library_function($username, $password);
return $this->{$auth_library_class}->$auth_library_function($username, $password);
}

/**
Expand Down

0 comments on commit e4c0b12

Please sign in to comment.