Skip to content
Snippets Groups Projects
Commit 4b9dc694 authored by Jerrett Fowler's avatar Jerrett Fowler Committed by GitHub
Browse files

Merge pull request #77 from nadavkav/patch-1

Minor fix ($e >> $ex)
parents f473c114 05d49375
No related branches found
No related tags found
No related merge requests found
...@@ -144,7 +144,7 @@ class store extends php_obj implements log_writer { ...@@ -144,7 +144,7 @@ class store extends php_obj implements log_writer {
$this->connect_xapi_repository(); $this->connect_xapi_repository();
return true; return true;
} catch (moodle_exception $ex) { } catch (moodle_exception $ex) {
debugging('Cannot connect to LRS: ' . $e->getMessage(), DEBUG_DEVELOPER); debugging('Cannot connect to LRS: ' . $ex->getMessage(), DEBUG_DEVELOPER);
return false; return false;
} }
} }
......
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