You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Did you remember to make the first column something unique in your call to get_records? Duplicate value 'Test course: XS' found in column 'course'.
line 987 of /lib/dml/pgsql_native_moodle_database.php: call to debugging()
line 2017 of /lib/tablelib.php: call to pgsql_native_moodle_database->get_records_sql()
line 2039 of /lib/tablelib.php: call to table_sql->query_db()
line 68 of /admin/tool/lifecycle/errors.php: call to table_sql->out()
The text was updated successfully, but these errors were encountered:
If errored courses have same full names, then one of them will be missed on the error page. This is because of c.fullname being used as the first column in this SQL https://github.com/learnweb/moodle-tool_lifecycle/blob/master/classes/local/table/process_errors_table.php#L59
It should use
c.id
The text was updated successfully, but these errors were encountered: