]> git.mxchange.org Git - friendica.git/commitdiff
logging of manage identities
authorfriendica <info@friendica.com>
Fri, 27 Jan 2012 20:56:36 +0000 (12:56 -0800)
committerfriendica <info@friendica.com>
Fri, 27 Jan 2012 20:56:36 +0000 (12:56 -0800)
boot.php
include/security.php

index 03f324749de6d258060092e5820b3c4898e5bdd7..c2c99a55ec953391661cb1ac499817748dc3f4f8 100755 (executable)
--- a/boot.php
+++ b/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      );
 
index ed5777109856103abce0967a01d02fda04315b6d..bc2c9f0bf814e563b4b47fb29ddd9d96530fafbf 100755 (executable)
@@ -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)) {