Skip to content

Commit

Permalink
Fixed syntax error by adding a missing ; in managelinks.php
Browse files Browse the repository at this point in the history
  • Loading branch information
James Voong committed Aug 1, 2018
1 parent 45aa983 commit 456649c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion managelinks.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
$editinglink = new stdClass;
$editinglink->id = $formdata->linkid;
$editinglink->title = $formdata->title;
$editinglink->url = $formdata->url
$editinglink->url = $formdata->url;
$editinglink->contextid = $context->id;
$DB->update_record('block_equella_links', $editinglink);
} else {
Expand Down

0 comments on commit 456649c

Please sign in to comment.