By Hamid.D on
Hi all,
How can I change node title after editing a form?
I use hook_nodeapi and:
$node->title = 'something';
but it doesn't work/
thanks in advance
Hi all,
How can I change node title after editing a form?
I use hook_nodeapi and:
$node->title = 'something';
but it doesn't work/
thanks in advance
Comments
What $op are you responding
What $op are you responding to in hook_nodeapi?
<?phpif($op == 'update'){
You want to alter the title
You want to alter the title before it is saved, right?
In that case, you should respond to 'presave'.
try drupal_set_title()
try drupal_set_title()
--------------------------------------------------------------------------------------------------------
if you can use drupal why use others?
VicTheme.com
it will not work because you
it will not work because you need to save your node:
node_save(node_submit($node));