You are here

function user_pwreset_timeout_uninstall in User Password Reset Link Timeout 7

Same name and namespace in other branches
  1. 8 user_pwreset_timeout.install \user_pwreset_timeout_uninstall()

Implements hook_install().

File

./user_pwreset_timeout.install, line 11
Install, update and uninstall functions for the user_pwreset_timeout module.

Code

function user_pwreset_timeout_uninstall() {

  // Delete the variable since it didn't exist before install of this module.
  variable_del('user_password_reset_timeout');
}