Update settings/ajax/lostpassword.php
respect coding style
This commit is contained in:
parent
6308f80329
commit
04033585b0
1 changed files with 3 additions and 3 deletions
|
@ -1,16 +1,16 @@
|
|||
<?php
|
||||
|
||||
// Init owncloud
|
||||
require_once('../../lib/base.php');
|
||||
require_once '../../lib/base.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) ){
|
||||
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_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") )));
|
||||
|
|
Loading…
Reference in a new issue