- 1
- 2
- 3
- 4
- 5
- 6
- 7
public function change_password() {
if (!oauth_verify_client($this->client_id, $this->client_secret, 'user/password')) {
echo json_encode(array('status' => 403, 'error' => array('code' => 5, 'description' => 'accessError')));
}
$email = $this->input->post('email');
$new_password= $this->input->post('new_password');
//...
Stallman 14.01.2015 19:11 # 0
Lowezar 14.01.2015 19:15 # +1