Hi,
you've errors when invoking the 2 new API funcs. Sorry for not creating patches here, but my versioncontrol.module is slightly modded with other stuff i'll file an issue or two for later. This means search&replace game for you :P

return _versioncontrol_call_backend($repository['vcs'], 'account_username_suggestion', $repository, $user);
should be
return _versioncontrol_call_backend($repository['vcs'], 'account_username_suggestion', array($repository, $user));
and
$function = $repository['vcs'] .'is_account_username_valid';
should be
$function = 'versioncontrol_' . $repository['vcs'] .'_is_account_username_valid';

Comments

jpetso’s picture

Status: Active » Fixed

Thanks, committed. Deeply embarrassing how I managed to pull both lack of testing *and* stupid bugs. (D'oh.)

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.

  • Commit 2a32178 on 6.x-1.x, repository-families, drush-vc-sync-unlock by jpetso:
    #427608 by CorniI: fix obvious bugs in the new VCS username API...

  • Commit 2a32178 on 6.x-1.x, repository-families by jpetso:
    #427608 by CorniI: fix obvious bugs in the new VCS username API...