Welcome to mirror list, hosted at ThFree Co, Russian Federation.

lostpassword.php « ajax « settings - github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b5f47bbceabe88a41464da3ed6283b14f3b85744 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php

OC_JSON::checkLoggedIn();
OCP\JSON::callCheck();

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

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