From 51a50644c3551ccdbb753da6aa66be026c434c7f Mon Sep 17 00:00:00 2001 From: David Paul <dpaul4@une.edu.au> Date: Tue, 27 Jun 2023 03:04:22 +0000 Subject: [PATCH] Update OAuth.php to remove creation of dynamic property --- lti_util/OAuth.php | 1 + 1 file changed, 1 insertion(+) diff --git a/lti_util/OAuth.php b/lti_util/OAuth.php index a5490b0..8ad89a4 100644 --- a/lti_util/OAuth.php +++ b/lti_util/OAuth.php @@ -12,6 +12,7 @@ class OAuthException extends Exception { class OAuthConsumer { public $key; public $secret; + public $callback_url; function __construct($key, $secret, $callback_url=NULL) { $this->key = $key; -- GitLab