--- node.old Sat Feb 26 08:32:45 2005 +++ node.module Sat Feb 26 08:48:02 2005 @@ -1326,7 +1326,8 @@ // Add the default fields. $output .= '
'; - $output .= form_textfield(t('Title'), 'title', $edit->title, 60, 128, NULL, NULL, TRUE); + $title = module_invoke($edit->type, 'settings', 'title_label'); + $output .= form_textfield($title ? $title : t('Title'), 'title', $edit->title, 60, 128, NULL, NULL, TRUE); // Add the node-type-specific fields. $output .= $form;