Closed (fixed)
Project:
Project issue tracking
Version:
6.x-1.x-dev
Component:
Issues
Priority:
Normal
Category:
Feature request
Assigned:
Unassigned
Reporter:
Created:
5 May 2009 at 23:25 UTC
Updated:
11 May 2009 at 20:53 UTC
node/add/project-issue/projectname?edit[title]=title of an issue does not work with the prepopulate module. I believe it comes from project_issue_form() in issue.inc which set the #default_value of the title:
if ($allow_metadata_changes) {
$form['issue_details']['title'] = array(
'#type' => 'textfield',
'#title' => t('Title'),
'#default_value' => $node->title,
'#size' => 60,
'#maxlength' => 128,
'#required' => TRUE,
);
}
Comments
Comment #1
dawehnertry out this:
http://project.dev/node/add/project-issue/projectname?edit[issue_details...
Comment #2
scor commentedyes, that works. Thanks dereine.