diff options
| author | Brent Shaffer <bshafs@gmail.com> | 2015-04-15 00:48:06 +0300 |
|---|---|---|
| committer | Brent Shaffer <bshafs@gmail.com> | 2015-04-15 00:48:06 +0300 |
| commit | 74b9e86f7d836d1e00f6743f24aa10f83d536e6f (patch) | |
| tree | 26ab6bbf374e0935073330f7654370e6d182559b | |
| parent | 319178cda58a3c294e20409afa8d66fe217a186c (diff) | |
| parent | ce4a7ae46b9ce211ec23b2450f764510bd75908e (diff) | |
| download | oauth2-server-php-php5.2-develop.tar.xz | |
Merge pull request #514 from nsams/patch-2php5.2-develop
[php5.2] Make validateRedirectUri protected to be able to override
| -rw-r--r-- | src/OAuth2/Controller/AuthorizeController.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/OAuth2/Controller/AuthorizeController.php b/src/OAuth2/Controller/AuthorizeController.php index 1f33b1e..185fc70 100644 --- a/src/OAuth2/Controller/AuthorizeController.php +++ b/src/OAuth2/Controller/AuthorizeController.php @@ -227,7 +227,7 @@ class OAuth2_Controller_AuthorizeController implements OAuth2_Controller_Authori * * @see http://tools.ietf.org/html/rfc6749#section-3.1.2 */ - private function validateRedirectUri($inputUri, $registeredUriString) + protected function validateRedirectUri($inputUri, $registeredUriString) { if (!$inputUri || !$registeredUriString) { return false; // if either one is missing, assume INVALID |
