Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 009db42

Browse files
committedDec 5, 2011
Fix user variable name in mc_tag_delete
Thanks to atrol for spotting the error.
1 parent 9a1a1c4 commit 009db42

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎api/soap/mc_tag_api.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ function mc_tag_delete( $p_username, $p_password, $p_tag_id ) {
108108
}
109109

110110
if ( !access_has_global_level( config_get( 'tag_edit_threshold' ) ) )
111-
return mci_soap_fault_access_denied( $p_user_id );
111+
return mci_soap_fault_access_denied( $t_user_id );
112112

113113
if ( ! tag_exists( $p_tag_id ) )
114114
return new soap_fault('Client', '', 'No tag with id ' . $p_tag_id);

0 commit comments

Comments
 (0)
Please sign in to comment.