Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Limit logs & Support group sync from modules #3426

Merged
merged 3 commits into from
Sep 2, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Support group sync from modules
  • Loading branch information
partydragen committed Aug 2, 2023
commit 02b613509c5706fca6f9a38f6b6baf0fa00056b4
2 changes: 1 addition & 1 deletion modules/Core/pages/panel/security.php
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@
}

$log_title = $language->get('admin', 'group_sync_logs');
$logs_set = DB::getInstance()->orderWhere('logs', 'action = \'discord_role_set\' OR action = \'mc_group_sync_set\' ', 'time', 'DESC LIMIT 500')->results();
$logs_set = DB::getInstance()->orderWhere('logs', 'action LIKE \'%_role_set\' OR action LIKE \'%_group_set\'OR action = \'mc_group_sync_set\' ', 'time', 'DESC LIMIT 500')->results();

$cols = 5;
$col_titles = [
Expand Down