From b46ec09d8ee59bc0e80f28ee0178ccdf3fd61760 Mon Sep 17 00:00:00 2001 From: Sylvain Berfini Date: Tue, 20 Aug 2019 15:41:46 +0200 Subject: [PATCH] Fixed final issue --- src/xmlrpc/user_info.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/xmlrpc/user_info.php b/src/xmlrpc/user_info.php index ff54e7e..afed5dc 100644 --- a/src/xmlrpc/user_info.php +++ b/src/xmlrpc/user_info.php @@ -63,6 +63,7 @@ function xmlrpc_get_email_account($method, $args) { $user_info = new UserInfo($db); $user_info->account_id = $account->id; + $user_info->GetOne(); $result = array( "id" => $account->id, @@ -123,6 +124,7 @@ function xmlrpc_get_phone_account($method, $args) { $user_info = new UserInfo($db); $user_info->account_id = $account->id; + $user_info->GetOne(); $result = array( "id" => $account->id, @@ -159,6 +161,7 @@ function xmlrpc_get_account_by_confirmation_key($method, $args) { $user_info = new UserInfo($db); $user_info->account_id = $account->id; + $user_info->GetOne(); $result = array( "id" => $account->id,