-
Bug
-
Resolution: Fixed
-
Critical
-
2.3, 2.7
-
MOODLE_23_STABLE, MOODLE_27_STABLE
-
MOODLE_27_STABLE
-
wip-
MDL-36987-master -
-
In the config_plugins table, auth plugins would normally have the 'plugin' field set to auth_plugin (supposing the plugin is called 'plugin').
However in the user profile field locking options, it uses the plugin field auth/plugin.
See admin/auth_config.php function print_auth_lock_options around line 108:
$pluginconfig = get_config("auth/$auth");
|
This is crap, not sure what should be done about it though (it's not causing me serious problems, now that I know about it I have a workaround for my actual issue).