forum_update

Versions
4.6 – 5
forum_update($node)

Implementation of hook_update().

Code

modules/forum.module, line 515

<?php
function forum_update($node) {
  db_query('UPDATE {forum} SET tid = %d WHERE nid = %d', $node->tid, $node->nid);
}
?>
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.