Fix "Edit existing project not pulling original data".

This commit is contained in:
Drake 2006-08-31 04:21:43 +00:00
parent 565119fa1a
commit a72ba4c8c2
2 changed files with 2 additions and 1 deletions

View file

@ -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

View file

@ -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