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

Fix ci badge #77

Merged
merged 2 commits into from
Jan 2, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
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
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# A Moodle A/B testing admin tool

![GitHub Workflow Status (branch)](https://img.shields.io/github/workflow/status/catalyst/moodle-tool_abconfig/ci/MOODLE_38_STABLE)
<a href="https://github.com/catalyst/moodle-tool_abconfig/actions">
<img src="https://github.com/catalyst/moodle-tool_abconfig/workflows/ci/badge.svg">
</a>

A way to A/B test config, or slowly turn on config for certain audiences or % of traffic

Expand Down
2 changes: 1 addition & 1 deletion lib.php
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ function tool_abconfig_execute_command_array($commandsencoded, $shortname, $js =
$CFG->{$commandarray[1]} = $commandarray[2];
$CFG->config_php_settings[$commandarray[1]] = $commandarray[2];
} else {
error_log("abconfig: Can't override \$CFG->{$commandarray[1]} because already set in config.php!");
debugging("abconfig: Can't override \$CFG->{$commandarray[1]} because already set in config.php!");
}
}
if ($command == 'forced_plugin_setting') {
Expand Down
Loading