summaryrefslogtreecommitdiffstats
path: root/settings
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2012-09-04 12:49:21 +0300
committerThomas Müller <thomas.mueller@tmit.eu>2012-09-04 12:49:21 +0300
commit16b3ffb5888b8eda6f2f42902df1f441fcbb7609 (patch)
treec8128dc22f676824585ddcaf23fc405a4339d73f /settings
parent83575a44360357dbbace4038afff220c5aa3a36d (diff)
downloadnextcloud-server-16b3ffb5888b8eda6f2f42902df1f441fcbb7609.tar.gz
nextcloud-server-16b3ffb5888b8eda6f2f42902df1f441fcbb7609.zip
Update settings/ajax/openid.php
respect coding style
Diffstat (limited to 'settings')
-rw-r--r--settings/ajax/openid.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/settings/ajax/openid.php b/settings/ajax/openid.php
index bf4ead06020..ecec085383c 100644
--- a/settings/ajax/openid.php
+++ b/settings/ajax/openid.php
@@ -1,7 +1,7 @@
<?php
// Init owncloud
-require_once('../../lib/base.php');
+require_once '../../lib/base.php';
$l=OC_L10N::get('settings');
@@ -10,9 +10,9 @@ OCP\JSON::callCheck();
OC_JSON::checkAppEnabled('user_openid');
// Get data
-if( isset( $_POST['identity'] ) ){
+if( isset( $_POST['identity'] ) ) {
$identity=$_POST['identity'];
- OC_Preferences::setValue(OC_User::getUser(),'user_openid','identity',$identity);
+ OC_Preferences::setValue(OC_User::getUser(), 'user_openid', 'identity', $identity);
OC_JSON::success(array("data" => array( "message" => $l->t("OpenID Changed") )));
}else{
OC_JSON::error(array("data" => array( "message" => $l->t("Invalid request") )));