aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
authorJoseph Warner <hardolaf@hardolaf.com>2013-07-30 14:14:48 -0400
committerJoseph Warner <hardolaf@hardolaf.com>2013-07-30 14:15:00 -0400
commitb74e65801a17ec5d221661ac92f1c437cc7ade1a (patch)
tree9ed7dbc7f19060062bf1ea0c127d5fbabdc0eb70 /phpBB
parentbf9d4e0cdf0fc99555ebd9860665ce898a8d9497 (diff)
downloadforums-b74e65801a17ec5d221661ac92f1c437cc7ade1a.tar
forums-b74e65801a17ec5d221661ac92f1c437cc7ade1a.tar.gz
forums-b74e65801a17ec5d221661ac92f1c437cc7ade1a.tar.bz2
forums-b74e65801a17ec5d221661ac92f1c437cc7ade1a.tar.xz
forums-b74e65801a17ec5d221661ac92f1c437cc7ade1a.zip
[feature/oauth] Clean up documentation
PHPBB3-11673
Diffstat (limited to 'phpBB')
-rw-r--r--phpBB/phpbb/auth/provider/interface.php2
-rw-r--r--phpBB/phpbb/auth/provider/oauth/service/facebook.php6
-rw-r--r--phpBB/phpbb/auth/provider/oauth/service/google.php4
3 files changed, 6 insertions, 6 deletions
diff --git a/phpBB/phpbb/auth/provider/interface.php b/phpBB/phpbb/auth/provider/interface.php
index a2d57a6917..fd3fa7d879 100644
--- a/phpBB/phpbb/auth/provider/interface.php
+++ b/phpBB/phpbb/auth/provider/interface.php
@@ -87,7 +87,7 @@ interface phpbb_auth_provider_interface
* )
* An optional third element may be added to this
* array: 'BLOCK_VAR_NAME'. If this is present,
- * then it's value should be a string that is used
+ * then its value should be a string that is used
* to designate the name of the loop used in the
* ACP template file. In addition to this, an
* additional key named 'BLOCK_VARS' is required.
diff --git a/phpBB/phpbb/auth/provider/oauth/service/facebook.php b/phpBB/phpbb/auth/provider/oauth/service/facebook.php
index 16919081cc..dc742cca0d 100644
--- a/phpBB/phpbb/auth/provider/oauth/service/facebook.php
+++ b/phpBB/phpbb/auth/provider/oauth/service/facebook.php
@@ -70,13 +70,13 @@ class phpbb_auth_provider_oauth_service_facebook extends phpbb_auth_provider_oau
throw new Exception('Invalid service provider type');
}
- // This was a callback request from bitly, get the token
+ // This was a callback request, get the token
$this->service_provider->requestAccessToken( $this->request->variable('code', '') );
// Send a request with it
$result = json_decode( $this->service_provider->request('/me'), true );
- // Return the unique identifier returned from bitly
+ // Return the unique identifier
return $result['id'];
}
@@ -94,7 +94,7 @@ class phpbb_auth_provider_oauth_service_facebook extends phpbb_auth_provider_oau
// Send a request with it
$result = json_decode( $this->service_provider->request('/me'), true );
- // Return the unique identifier returned from bitly
+ // Return the unique identifier
return $result['id'];
}
}
diff --git a/phpBB/phpbb/auth/provider/oauth/service/google.php b/phpBB/phpbb/auth/provider/oauth/service/google.php
index b49a833cce..e2b0f7d36a 100644
--- a/phpBB/phpbb/auth/provider/oauth/service/google.php
+++ b/phpBB/phpbb/auth/provider/oauth/service/google.php
@@ -87,7 +87,7 @@ class phpbb_auth_provider_oauth_service_google extends phpbb_auth_provider_oauth
// Send a request with it
$result = json_decode( $this->service_provider->request('https://www.googleapis.com/oauth2/v1/userinfo'), true );
- // Return the unique identifier returned from bitly
+ // Return the unique identifier
return $result['id'];
}
@@ -105,7 +105,7 @@ class phpbb_auth_provider_oauth_service_google extends phpbb_auth_provider_oauth
// Send a request with it
$result = json_decode( $this->service_provider->request('https://www.googleapis.com/oauth2/v1/userinfo'), true );
- // Return the unique identifier returned from bitly
+ // Return the unique identifier
return $result['id'];
}
}