| Versions | |
|---|---|
| 4.7 – 5 | forum_prepare(&$node) |
Implementation of hook_prepare; assign forum taxonomy when adding a topic from within a forum.
modules/
<?php
function forum_prepare(&$node) {
if (!$node->nid) {
// new topic
$node->taxonomy[arg(3)]->vid = _forum_get_vid();
$node->taxonomy[arg(3)]->tid = arg(3);
}
}
?>