Skip to content
Snippets Groups Projects
Commit 6ffc11f9 authored by Andrew Downes's avatar Andrew Downes Committed by Ryan Smith
Browse files

fix: Fixes undefined variable to close #327. (#331 - Thanks @garemoko)

parent a20f8670
No related branches found
No related tags found
No related merge requests found
......@@ -24,7 +24,6 @@ function load(array $config, array $events) {
$endpoint = $config['lrs_endpoint'];
$username = $config['lrs_username'];
$password = $config['lrs_password'];
$proxyendpoint = $config['lrs_proxy_endpoint'];
$url = utils\correct_endpoint($endpoint).'/statements';
$auth = base64_encode($username.':'.$password);
......
......@@ -30,7 +30,6 @@ function load(array $config, array $events) {
$endpoint = $config['lrs_endpoint'];
$username = $config['lrs_username'];
$password = $config['lrs_password'];
$proxyendpoint = $config['lrs_proxy_endpoint'];
$url = utils\correct_endpoint($endpoint).'/statements';
$auth = base64_encode($username.':'.$password);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment