mirror of
https://gitlab.linphone.org/BC/public/flexisip-account-manager.git
synced 2026-01-17 10:08:05 +00:00
Fixed final issue
This commit is contained in:
parent
774386eec4
commit
b46ec09d8e
1 changed files with 3 additions and 0 deletions
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue