disable oauth2 until I can get back to it - it's throwing typos
This commit is contained in:
parent
08e21fd0b8
commit
84064b90a6
@ -629,7 +629,7 @@ function get_vcard_array($vc,$id) {
|
|||||||
'address' => $adr->getParts()
|
'address' => $adr->getParts()
|
||||||
];
|
];
|
||||||
$last_entry = end($adrs);
|
$last_entry = end($adrs);
|
||||||
if($adrs[$last_entry]['address'])
|
if($last_entry && $adrs[$last_entry]['address'])
|
||||||
array_walk($adrs[$last_entry]['address'],'array_escape_tags');
|
array_walk($adrs[$last_entry]['address'],'array_escape_tags');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,8 +1,9 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
$storage = new OAuth2\Storage\Pdo(\DBA::$dba->db);
|
$storage = new OAuth2\Storage\Pdo(\DBA::$dba->db);
|
||||||
$config = [
|
$config = [
|
||||||
'use_openid_connect'] => true,
|
'use_openid_connect' => true,
|
||||||
'issuer' => \Zotlabs\Lib\System::get_site_name()
|
'issuer' => \Zotlabs\Lib\System::get_site_name()
|
||||||
];
|
];
|
||||||
|
|
||||||
@ -19,3 +20,4 @@
|
|||||||
]);
|
]);
|
||||||
|
|
||||||
$oauth2_server->addStorage($keyStorage,'public_key');
|
$oauth2_server->addStorage($keyStorage,'public_key');
|
||||||
|
*/
|
Reference in New Issue
Block a user