backdrop-contrib / smtp

Backdrop CMS port of the SMTP module for Drupal 7
GNU General Public License v2.0
4 stars 5 forks source link

Undefined variable $config dans smtp_uninstall() #37

Closed drupix closed 2 months ago

drupix commented 4 months ago

There is a small bug in hook_uninstall() of the mudule:

$mail_system = $config->get('smtp_previous_mail_system');

should be changed with:

$mail_system = config_get('smtp_previous_mail_system');

yorkshire-pudding commented 2 months ago

This issue is a duplicate of #26 which has a Pull Request at #30