Skip to content

Commit

Permalink
Fix #13789 : Invalid usage of function mci_soap_fault_access_denied
Browse files Browse the repository at this point in the history
  • Loading branch information
atrol committed Jan 23, 2012
1 parent 44ea31f commit 6049d83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/soap/mc_issue_api.php
Expand Up @@ -1143,7 +1143,7 @@ function mc_issue_relationship_add( $p_username, $p_password, $p_issue_id, $p_re

# bug is not read-only...
if( bug_is_readonly( $p_issue_id ) ) {
return new mci_soap_fault_access_denied( $t_user_id, "Issue '$p_issue_id' is readonly" );
return mci_soap_fault_access_denied( $t_user_id, "Issue '$p_issue_id' is readonly" );
}

# user can access to the related bug at least as viewer...
Expand Down

0 comments on commit 6049d83

Please sign in to comment.