You are here

function hsts_uninstall in HTTP Strict Transport Security 6

Same name and namespace in other branches
  1. 7 hsts.install \hsts_uninstall()

Implements hook_uninstall().

File

./hsts.install, line 27
Install file for the hsts module.

Code

function hsts_uninstall() {
  variable_del('hsts_max_age');
  variable_del('hsts_enabled');
  variable_del('hsts_subdomains');
}