<?php

/* $Id: recaptcha.install,v 1.2.4.2.2.2 2007/09/13 09:12:40 robloach Exp $ */

/**
 *
 * @file Provides install, updated, and uninstall functions for recaptcha.
 * 
 */
 
 
/**
 * Implementation of hook_uninstall().
 */
function recaptcha_uninstall() {
  // Delete all the recaptcha variables and then clear the variable cache  
  db_query("delete from {variable} where name like 'recaptcha_%'");
  cache_clear_all('variables', 'cache');
}

//Yes.

