aboutsummaryrefslogtreecommitdiffstats
path: root/settings/ajax/lostpassword.php
blob: 5874dec9647d67323123d941dc5bbfe9002d71d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php

// Init owncloud
require_once('../../lib/base.php');

OC_JSON::checkLoggedIn();

$l=OC_L10N::get('core');

// Get data
if( isset( $_POST['email'] ) ){
	$email=trim($_POST['email']);
	OC_Preferences::setValue(OC_User::getUser(),'settings','email',$email);
	OC_JSON::success(array("data" => array( "message" => $l->t("email Changed") )));
}else{
	OC_JSON::error(array("data" => array( "message" => $l->t("Invalid request") )));
}

?>