We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In Moode 4, it shows an error, there is a field hidden that's not exist in question table while in query it's using.
The text was updated successfully, but these errors were encountered:
@azmatksa I had to do the following, because a database column named "hidden" for table "mdl_question" no longer exists:
If you addionally want to solve that a couple of questions are announced as "Unknown plugin type", change lines 78 to 80 as follows:
if ($ctype_name == '[[pluginname]]') { $ctype_name = '[' . $item->typename . ']'; } else { $ctype_name = $ctype_name . ' [' . $item->typename . ']'; }
if ($ctype_name == '[[pluginname]]') {
$ctype_name = '[' . $item->typename . ']';
}
else {
$ctype_name = $ctype_name . ' [' . $item->typename . ']';
Now it looks all fine like this:
Sorry, something went wrong.
No branches or pull requests
In Moode 4, it shows an error, there is a field hidden that's not exist in question table while in query it's using.
The text was updated successfully, but these errors were encountered: