preparing for 6.5.0 dev

This commit is contained in:
JT Smith 2005-03-05 03:30:16 +00:00
parent b0a6882e89
commit dd60e4be04
4 changed files with 699 additions and 1028 deletions

View file

@ -1,3 +1,7 @@
6.5.0
- Fixed a bug in the Collaboration post where the post end date was set to
the start date.
6.4.0
- You can now see the groups of groups hierarchy in the group manager.
- Added an initial configuration wizard which prompts the site owner to

File diff suppressed because one or more lines are too long

View file

@ -1,5 +1,5 @@
package WebGUI;
our $VERSION = "6.4.0";
our $VERSION = "6.5.0";
our $STATUS = "beta";
#-------------------------------------------------------------------

View file

@ -937,7 +937,7 @@ sub www_edit {
});
$var{'endDate.form'} = WebGUI::Form::dateTime({
name => 'endDate',
value => $self->getValue("startDate")
value => $self->getValue("endDate")
});
$self->getThread->getParent->appendTemplateLabels(\%var);
return $self->getThread->getParent->processStyle($self->processTemplate(\%var,$self->getThread->getParent->get("postFormTemplateId")));