Community & Support

How can I change node title in hook_nodeapi?

Hi all,
How can I change node title after editing a form?
I use hook_nodeapi and:

<?php
$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'){ 

<?php
if($op == 'update'){
 
$node->title = 'something';
}
?>

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
skype id : duckzland