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 the commit e478413 was one comma add, which is not needed. It gives an error while updating configuration.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In the commit e478413 was one comma add, which is not needed. It gives an error while updating configuration.
diff --git a/classes/class.ilBigBlueButtonConfigGUI.php b/classes/class.ilBigBlueButtonConfigGUI.php
index ebb20ab..c47b931 100755
--- a/classes/class.ilBigBlueButtonConfigGUI.php
+++ b/classes/class.ilBigBlueButtonConfigGUI.php
@@ -154,7 +154,7 @@ class ilBigBlueButtonConfigGUI extends ilPluginConfigGUI
" svrpublicurl = ".$ilDB->quote($setPublicURL, "text").",".
" svrprivateurl = ".$ilDB->quote($setPublicURL, "text").",".
" svrsalt = ".$ilDB->quote($setSalt, "text"). ",".
- " choose_recording = ".$ilDB->quote($choose_recording, "integer").",".
+ " choose_recording = ".$ilDB->quote($choose_recording, "integer").
" WHERE id = ".$ilDB->quote(1, "integer")
);
}
The text was updated successfully, but these errors were encountered: