На странице ноды через node.tpl.php вызываю форму field_collection для этой ноды:
<?php
module_load_include('inc', 'field_collection', 'field_collection.pages');
$output = field_collection_item_add('field_request', 'node', $node->nid);
?>
После этого title страницы изменяется на Add new [Название_field_collection].
Как побороть?
Комментарии
Костысль, конечно, но это первое что в голову приходит.
$current_title = drupal_get_title();
module_load_include('inc', 'field_collection', 'field_collection.pages');
$output = field_collection_item_add('field_request', 'node', $node->nid);
drupal_set_title($current_title);
?>