Fix "Edit existing project not pulling original data".
This commit is contained in:
parent
565119fa1a
commit
a72ba4c8c2
2 changed files with 2 additions and 1 deletions
|
|
@ -32,6 +32,7 @@
|
|||
- API change: ProfileField::new now returns undef for invalid fields
|
||||
- API change: in ProfileField, the get*Fields family of methods are now class methods
|
||||
- API change: 'func' and 'op' are now reserved and not usable as profile fields
|
||||
- fix: project editing in project management systems not reading fields correctly
|
||||
|
||||
7.0.6
|
||||
- fix: Error in DateTime.pm
|
||||
|
|
|
|||
|
|
@ -407,7 +407,7 @@ sub www_editProject {
|
|||
|
||||
#Set Local Vars
|
||||
my $projectId = $form->get("projectId");
|
||||
my $project = $db->quickHashRef("select * from PM_project where projectId=?",[$db->quote($projectId)]);
|
||||
my $project = $db->quickHashRef("select * from PM_project where projectId=?",[$projectId]);
|
||||
my $addEditText = ($projectId eq "new")?$i18n->get("create project"):$i18n->get("edit project");
|
||||
|
||||
#Build Form
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue