Index: forum.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/forum/forum.module,v
retrieving revision 1.414
diff -r1.414 forum.module
63a64,80
>  * Fetch a forum term.
>  *
>  * @param $tid
>  *   The ID of the term which should be loaded.
>  *
>  * @return
>  *   An associative array containing the term data or FALSE if the term cannot be loaded.
>  */
> function forum_term_load($tid) {
>   $result = db_query(db_rewrite_sql('SELECT t.tid, t.vid, t.name, t.description, t.weight FROM {term_data} t WHERE t.tid = %d', 't', 'tid'), $tid);
>   if (!$term = db_fetch_array($result)) {
>     $term = FALSE;
>   }
>   return $term;
> }
> 
> /**
