summaryrefslogtreecommitdiff
path: root/actions/userauthorization.php
diff options
context:
space:
mode:
authorEvan Prodromou <evan@controlyourself.ca>2008-12-02 22:26:32 -0500
committerEvan Prodromou <evan@controlyourself.ca>2008-12-02 22:26:32 -0500
commit58beea9798678ad5cc6c0dd43604f5d8b8d4d5e8 (patch)
treee45b50ff72d8ad9179d8b13e2e5002717f3b95b0 /actions/userauthorization.php
parentf84dbce164f26af861c02b7dfe63ce8b43396364 (diff)
check for license compatibility
darcs-hash:20081203032632-5ed1f-2213efd018913e3253082dbe83d7b906c4f0ff76.gz
Diffstat (limited to 'actions/userauthorization.php')
-rw-r--r--actions/userauthorization.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/actions/userauthorization.php b/actions/userauthorization.php
index 11e2d7135..96df8d146 100644
--- a/actions/userauthorization.php
+++ b/actions/userauthorization.php
@@ -449,6 +449,10 @@ class UserauthorizationAction extends Action {
if (!common_valid_http_url($license)) {
throw new OAuthException("Invalid license URL '$license'.");
}
+ $site_license = common_config('license', 'url');
+ if (!common_compatible_license($license, $site_license)) {
+ throw new OAuthException("Listenee stream license '$license' not compatible with site license '$site_license'.");
+ }
# optional stuff
$fullname = $req->get_parameter('omb_listenee_fullname');
if ($fullname && strlen($fullname) > 255) {