Skip to content

Commit

Permalink
Remove unnecessary statement
Browse files Browse the repository at this point in the history
  • Loading branch information
torinfo committed Mar 29, 2023
1 parent 1057ea2 commit 5f0f1f7
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 1 deletion.
Empty file.
@@ -0,0 +1,4 @@
// Fill the array with all url's that should be recognised as n embedded mediasite video
x_mediasite_urls = [
"https://media.windesheim.nl",
];
Empty file.
@@ -0,0 +1,4 @@
// Fill the array with all url's that should be recognised as n embedded peertube video
x_peertube_urls = [
// "https://video.dlearning.nl/videos/embed"
];
1 change: 0 additions & 1 deletion website_code/php/management/delete_member.php
Expand Up @@ -48,7 +48,6 @@ function delete_members_from_group($login_ids, $group_id){
$login_id = $_POST['login_id'];
$group_id = $_POST['group_id'];

$database_id = database_connect("Delete member list connected","Delete member list failed");
$query = "DELETE FROM " . $xerte_toolkits_site->database_table_prefix . "user_group_members WHERE login_id=? AND group_id=?";
$params = array($login_id, $group_id);
db_query($query, $params);
Expand Down

0 comments on commit 5f0f1f7

Please sign in to comment.