-
Notifications
You must be signed in to change notification settings - Fork 490
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
Statistics: Fix errors and improve data handling in admin reports - refs BT#22248 #5966
Conversation
u.id = url.user_id AND | ||
access_url_id = $urlId | ||
$status_filter $active_filter"; | ||
FROM $user_table as u |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Variable "user_table" is not in valid camel caps format
access_url_id = $urlId | ||
$status_filter $active_filter"; | ||
FROM $user_table as u | ||
INNER JOIN $access_url_rel_user_table as url ON u.id = url.user_id |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Variable "access_url_rel_user_table" is not in valid camel caps format
cu.user_id = url.user_id AND | ||
access_url_id = $urlId | ||
$status_filter $active_filter"; | ||
FROM $course_user_table cu |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Variable "course_user_table" is not in valid camel caps format
access_url_id = $urlId | ||
$status_filter $active_filter"; | ||
FROM $course_user_table cu | ||
INNER JOIN $course_table c ON c.id = cu.c_id |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Variable "course_table" is not in valid camel caps format
$status_filter $active_filter"; | ||
FROM $course_user_table cu | ||
INNER JOIN $course_table c ON c.id = cu.c_id | ||
INNER JOIN $access_url_rel_user_table as url ON cu.user_id = url.user_id |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Variable "access_url_rel_user_table" is not in valid camel caps format
Code Climate has analyzed commit c6e300e and detected 32 issues on this pull request. Here's the issue category breakdown:
View more on Code Climate. |
No description provided.