[support] The best place to edit the node title?

Earnie Boyd earnie at users.sourceforge.net
Thu Sep 13 11:49:28 UTC 2007


Quoting "Augustin (Beginner)" <drupal.beginner at wechange.org>:

>
> <?php if ($node->title_prepend): print '<span class="node-label">'.
> $node->title_prepend .' </span>'; endif; ?>
>

Don't you need to protect against the non-existence of 
$node->title_prepend or is it guaranteed to be present at this point?

<code>
<?php if (isset($node->title_prepend)): print '<span class="node-label">'.
$node->title_prepend .' </span>'; endif; ?>
</code>

And you want to prettify this code.

Earnie -- http://for-my-kids.com/
-- http://give-me-an-offer.com/



More information about the support mailing list