Skip to content

Commit

Permalink
Fix #11919: Typo prevents copying of users between projects
Browse files Browse the repository at this point in the history
A typo introduced with the patch for issue #11530 prevented the copy
users from project A to project B feature from working.

Thanks to watergad for this patch.
  • Loading branch information
davidhicks committed Aug 10, 2010
1 parent aa9ba88 commit c6a1dd3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion manage_proj_user_copy.php
Expand Up @@ -51,7 +51,7 @@
access_ensure_project_level( config_get( 'manage_project_threshold' ), $t_dst_project_id );
access_ensure_project_level( config_get( 'project_user_threshold' ), $t_dst_project_id );

project_copy_users( $t_dst_project_id, $t_src_project_id. access_get_project_level( $t_dst_project_id ) );
project_copy_users( $t_dst_project_id, $t_src_project_id, access_get_project_level( $t_dst_project_id ) );

form_security_purge( 'manage_proj_user_copy' );

Expand Down

0 comments on commit c6a1dd3

Please sign in to comment.