Skip to content
Snippets Groups Projects

Resolve #3222919 "Missingscopes"

1 unresolved thread

Closes #3222919

Edited by Mathew Winstone

Merge request reports

Members who can merge are allowed to add commits.
Ready to merge by members who can write to the target branch.
Loading

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
136 136 $aname = $instance->serviceName;
137 137 if (!isset($api_names[$aname])) {
138 138 $aname = $temp->getName();
139 $aname = strtolower(str_replace('Google_Service_', '', $aname));
139 $aname = str_replace('Google_Service_', '', $aname);
140 $aname = strtolower(str_replace('Google\Service\\', '', $aname));
  • Isn't there one backslash too many?

    Suggested change
    140 $aname = strtolower(str_replace('Google\Service\\', '', $aname));
    140 $aname = strtolower(str_replace('Google\Service\', '', $aname));
  • Please register or sign in to reply
Please register or sign in to reply
Loading