示例#1
0
    if ($rrUser) {
        ZLogin::Login($rrUser['id']);
        Utility::Redirect(get_loginpage(WEB_ROOT . '/index.php'));
    }
} elseif ($actid == 'create' && $userid == $uu['user']['uid']) {
    //创建人人和本站的连接
    if (ZUser::GetRenrenUser($uu['user']['uid'])) {
        Session::Set('error', '注册失败,用户名已被使用');
    } else {
        $u = array();
        $u['username'] = $uu['user']['uid'];
        $u['realname'] = $uu['user']['name'];
        $u['password'] = '******';
        $u['city_id'] = abs(intval($city['id']));
        $u['email'] = $uu['user']['email_hash'] ? $uu['user']['email_hash'] : $uu['user']['uid'] . '@renren.com';
        if (option_yes('emailverify')) {
            $u['enable'] = 'N';
        }
        if ($user_id = ZUser::CreateRenRen($u, $userid)) {
            Session::Set('notice', '账号绑定成功');
            ZLogin::Login($user_id);
            Utility::Redirect(get_loginpage(WEB_ROOT . '/index.php'));
        } else {
            Session::Set('error', '账户关联出错!');
        }
    }
} elseif (!$uu) {
    Session::Set('error', '访问出错');
    Utility::Redirect(WEB_ROOT . '/index.php');
}
include template('xiaonei_connect_ok');