Closed (fixed)
Project:
urllogin
Version:
8.x-1.0
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
27 Jan 2021 at 23:54 UTC
Updated:
2 Apr 2021 at 20:19 UTC
Jump to comment: Most recent
In urllogin.module, function urllogin_retrieve() the config key is incorrect when retrieving codekey value from config
$codekey = Drupal::config('urlloginisettings')->get('codekey');
Use correct key (with period instead of 'i')
$codekey = Drupal::config('urllogin.settings')->get('codekey');
Start within a Git clone of the project using the version control instructions.
Or, if you do not have SSH keys set up on git.drupalcode.org:
Comments
Comment #4
philltran commented@neubreed Thank you for posting this issue and correction!
Comment #6
philltran commented