<?php
// $Id: adbard.install,v 1.1.4.1 2008/05/24 14:08:57 jeremy Exp $
/**
* Adbard module uninstall cleanup.
* Copyright (c) 2008 Jeremy Andrews <jeremy@tag1consulting.com>.
* All rights reserved.
*/
function adbard_uninstall() {
variable_del('adbard_key');
}
/**
* Clear the cache, as we had to update our menu for the API changes in Drupal
* 6.2.
*/
function adbard_update_6201() {
cache_clear_all();
return array();
}
?>