Skip to content
Snippets Groups Projects
Commit 16b3ffb5 authored by Thomas Müller's avatar Thomas Müller
Browse files

Update settings/ajax/openid.php

respect coding style
parent 83575a44
Branches
No related tags found
No related merge requests found
<?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") )));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment