diff --git a/Puc/v4p2/Vcs/GitLabApi.php b/Puc/v4p2/Vcs/GitLabApi.php index be3de09..c3feb4e 100644 --- a/Puc/v4p2/Vcs/GitLabApi.php +++ b/Puc/v4p2/Vcs/GitLabApi.php @@ -179,7 +179,7 @@ if ( ! class_exists( 'Puc_v4p2_Vcs_GitLabApi', false ) ) : } $url = substr( $url, 3 ); - $url = sprintf( 'https://%s/api/v4/projects/%s', $this->repositoryHost, $url ); + $url = sprintf( 'https://%1$s/api/v4/projects/%2$s', $this->repositoryHost, $url ); if ( $this->accessToken ) { $queryParams['private_token'] = $this->accessToken;