You are here

function recaptcha_update_7202 in reCAPTCHA 7.2

Remove recaptcha_mailhide 7.x-1.x from system table.

File

./recaptcha.install, line 98
Installation file for reCAPTCHA module.

Code

function recaptcha_update_7202() {

  // #2487215: Drupal 7.50+ requires system table cleanup.
  db_delete('system')
    ->condition('name', 'recaptcha_mailhide')
    ->execute();
  return t('Removed recaptcha_mailhide module from database.');
}