forum_load

Versions
4.6 – 6
forum_load($node)

Implementation of hook_load().

Code

modules/forum/forum.module, line 393

<?php
function forum_load($node) {
  $forum = db_fetch_object(db_query('SELECT * FROM {term_node} WHERE vid = %d', $node->vid));

  return $forum;
}
?>
Login or register to post comments
 
 

All source code and documentation on this site is released under the terms of the GNU General Public License, version 2 and later. Drupal is a registered trademark of Dries Buytaert.