summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2012-09-04 12:47:35 +0300
committerThomas Müller <thomas.mueller@tmit.eu>2012-09-04 12:47:35 +0300
commit04033585b04f7811d036c19d56408ff97171e0c9 (patch)
tree2b7e1838f7c44fbc6fcadf74ab5429c6e7edb83e
parent6308f803297f87e1c0b22503adfe81758a129f96 (diff)
downloadnextcloud-server-04033585b04f7811d036c19d56408ff97171e0c9.tar.gz
nextcloud-server-04033585b04f7811d036c19d56408ff97171e0c9.zip
Update settings/ajax/lostpassword.php
respect coding style
-rw-r--r--settings/ajax/lostpassword.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/settings/ajax/lostpassword.php b/settings/ajax/lostpassword.php
index 803a424854c..2a40ba09a8a 100644
--- a/settings/ajax/lostpassword.php
+++ b/settings/ajax/lostpassword.php
@@ -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") )));