Skip to content

Commit

Permalink
Use user account reference for category handler
Browse files Browse the repository at this point in the history
Fixes #24343
  • Loading branch information
vboctor committed Apr 28, 2018
1 parent b739c9f commit 8758ab8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/soap/mc_project_api.php
Expand Up @@ -900,7 +900,7 @@ function mci_project_categories( $p_project_id ) {

$t_default_handler_id = (int)$t_category['user_id'];
if( $t_default_handler_id != 0 ) {
$t_result['default_handler'] = mci_user_get( $t_default_handler_id );
$t_result['default_handler'] = mci_account_get_array_by_id( $t_default_handler_id );
}

$t_results[] = $t_result;
Expand Down

0 comments on commit 8758ab8

Please sign in to comment.