Project:Taxonomy Super Select (TSS)
Version:5.x-1.5-1
Component:Code
Category:feature request
Priority:minor
Assigned:NancyDru
Status:closed (fixed)

Issue Summary

/**
* Implementation of hook_uninstall().
*/
function taxonomy_super_select_install() {
  // Delete our variables.
  $result = db_query("SELECT vid FROM {vocabulary}");
  while ($vid = db_result($result)) {
    variable_del('taxonomy_super_select_vid_'. $vid);
  }
}

Comments

#1

Oops, typed it wrong.

/**
* Implementation of hook_uninstall().
*/
function taxonomy_super_select_uninstall() {
  // Delete our variables.
  $result = db_query("SELECT vid FROM {vocabulary}");
  while ($vid = db_result($result)) {
    variable_del('taxonomy_super_select_vid_'. $vid);
  }
}

#2

Status:needs review» fixed

This is now in 5.x-1.10.

#3

Status:fixed» closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.

nobody click here