]> source.dussan.org Git - nextcloud-server.git/commitdiff
Update settings/ajax/openid.php
authorThomas Müller <thomas.mueller@tmit.eu>
Tue, 4 Sep 2012 09:49:21 +0000 (12:49 +0300)
committerThomas Müller <thomas.mueller@tmit.eu>
Tue, 4 Sep 2012 09:49:21 +0000 (12:49 +0300)
respect coding style

settings/ajax/openid.php

index bf4ead06020b6c6eefdaf7c6152347821ab838ea..ecec085383c1124c599c3c7f6f1cb205ccdcfcd0 100644 (file)
@@ -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") )));