suppress error as result will be fine
[authserver.git] / authorize.php
index 33ffd09fc173be3807f574f6c27acb17b97e77d8..ac0979a94c3e96221de4a869d717b85505b78674 100644 (file)
@@ -71,7 +71,7 @@ if (!count($errors)) {
     }
     else {
       // Handle authorize request, forwarding code in GET parameters if the user has authorized your client.
-      $is_authorized = (($_POST['authorized'] === 'yes') || ($request->query['scope'] == 'email'));
+      $is_authorized = ((@$_POST['authorized'] === 'yes') || ($request->query['scope'] == 'email'));
       $server->handleAuthorizeRequest($request, $response, $is_authorized, $user['id']);
       /* For testing only
       if ($is_authorized) {