You are here

function _taxonomy_title_insert_title in Taxonomy Title 5

1 call to _taxonomy_title_insert_title()
taxonomy_title_taxonomy in ./taxonomy_title.module
Implementation of hook_taxonomy()

File

./taxonomy_title.module, line 57

Code

function _taxonomy_title_insert_title($tid, $title) {
  if ($title != '') {
    db_query('INSERT INTO {taxonomy_title} VALUES (%d, "%s")', $tid, $title);
  }
}