Active
Project:
Flexinode
Component:
Code
Priority:
Normal
Category:
Task
Assigned:
Unassigned
Reporter:
Created:
16 Mar 2006 at 09:38 UTC
Updated:
31 Mar 2006 at 10:03 UTC
following the documentation at http://drupal.org/node/22218#node-titles 'title' field has been removed from node.module and included in the modulename_form function.
Since flexinode should respond to the purpose of letting the user define its own content types, I think that function flexinode_form (in flexinode.module,v 1.65 2006/03/06) should not expose the following code in lines 583-590:
$form['title'] = array(
'#type' => 'textfield',
'#title' => t('Title'),
'#default_value' => $node->title,
'#size' => 60,
'#maxlength' => 128,
'#required' => TRUE,
);
By the way, I just converted those lines into a comment and as for now I don't report any malfunction.
Thanks, Paolo
Comments
Comment #1
pulpzebra commentedIn response to my previous and ingenue post, I have just patched flexinode.module v 1.65 with gnat patch posted in discussion http://drupal.org/node/32537.
At a first glance everything looks correct and working.
I also think that this modification should be in the flexinode core.
thanks to everyone in this community.