mirror of
https://github.com/friendica/friendica
synced 2024-11-09 23:02:54 +00:00
logging of manage identities
This commit is contained in:
parent
039eec360a
commit
5161be67e9
2 changed files with 8 additions and 3 deletions
2
boot.php
2
boot.php
|
@ -9,7 +9,7 @@ require_once('include/nav.php');
|
|||
require_once('include/cache.php');
|
||||
|
||||
define ( 'FRIENDICA_PLATFORM', 'Friendica');
|
||||
define ( 'FRIENDICA_VERSION', '2.3.1236' );
|
||||
define ( 'FRIENDICA_VERSION', '2.3.1237' );
|
||||
define ( 'DFRN_PROTOCOL_VERSION', '2.22' );
|
||||
define ( 'DB_UPDATE_VERSION', 1118 );
|
||||
|
||||
|
|
|
@ -35,6 +35,7 @@ function authenticate_success($user_record, $login_initial = false, $interactive
|
|||
}
|
||||
|
||||
$master_record = $a->user;
|
||||
|
||||
if((x($_SESSION,'submanage')) && intval($_SESSION['submanage'])) {
|
||||
$r = q("select * from user where uid = %d limit 1",
|
||||
intval($_SESSION['submanage'])
|
||||
|
@ -47,18 +48,22 @@ function authenticate_success($user_record, $login_initial = false, $interactive
|
|||
dbesc($master_record['password']),
|
||||
dbesc($master_record['email'])
|
||||
);
|
||||
if(count($r))
|
||||
if($r && count($r))
|
||||
$a->identities = $r;
|
||||
else
|
||||
$a->identities = array();
|
||||
|
||||
$r = q("select `user`.`uid`, `user`.`username`, `user`.`nickname` from manage left join user on manage.mid = user.uid
|
||||
$r = q("select `user`.`uid`, `user`.`username`, `user`.`nickname`
|
||||
from manage left join user on manage.mid = user.uid
|
||||
where `manage`.`uid` = %d",
|
||||
intval($master_record['uid'])
|
||||
);
|
||||
if($r && count($r))
|
||||
$a->identities = array_merge($a->identities,$r);
|
||||
|
||||
if($login_initial)
|
||||
logger('auth_identities: ' . print_r($a->identities,true), LOGGER_DEBUG);
|
||||
|
||||
$r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `self` = 1 LIMIT 1",
|
||||
intval($_SESSION['uid']));
|
||||
if(count($r)) {
|
||||
|
|
Loading…
Reference in a new issue