Skip to content
Snippets Groups Projects
Commit daa4d2cd authored by Tom Needham's avatar Tom Needham
Browse files

Validate email on save

parent b117a1e3
No related branches found
No related tags found
No related merge requests found
...@@ -8,12 +8,11 @@ OC_JSON::checkLoggedIn(); ...@@ -8,12 +8,11 @@ OC_JSON::checkLoggedIn();
$l=OC_L10N::get('core'); $l=OC_L10N::get('core');
// Get data // Get data
if( isset( $_POST['email'] ) ){ if( isset( $_POST['email'] ) && filter_var( $_POST['email'], FILTER_VALIDATE_EMAIL) ){ $email=trim($_POST['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 Changed") ))); OC_JSON::success(array("data" => array( "message" => $l->t("Email saved") )));
}else{ }else{
OC_JSON::error(array("data" => array( "message" => $l->t("Invalid request") ))); OC_JSON::error(array("data" => array( "message" => $l->t("Invalid email") )));
} }
?> ?>
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment