Skip to content
lost_character_captcha.install 384 B
Newer Older
soxofaan's avatar
soxofaan committed
<?php

/**
 * @file
 * Install, update and uninstall functions for the LOST CHARACTER CAPTCHA module.
 */

/**
 * Implements hook_uninstall().
 * On uninstall: remove module variables and clear variables cache
soxofaan's avatar
soxofaan committed
 */
function lost_character_captcha_uninstall() {
  db_query("DELETE FROM {variable} WHERE name LIKE 'lost_character_captcha_%'");
  cache_clear_all('variables', 'cache');
}