fixed cs reply bug

This commit is contained in:
JT Smith 2005-03-24 20:00:29 +00:00
parent b1c8bd747e
commit 076a9e2704
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,7 @@
6.5.5
- Fixed a bug in the collaboration system that caused replies to fail.
6.5.4 6.5.4
- fix [ 1160953 ] JavaScript Errors in admin console - IE - fix [ 1160953 ] JavaScript Errors in admin console - IE
- Fixed a drag and drop problem. - Fixed a drag and drop problem.
@ -23,6 +27,7 @@
- fix [ 1169379 ] eventscalendar wobjects have wrong scope after upgrade - fix [ 1169379 ] eventscalendar wobjects have wrong scope after upgrade
- fix [ 1168812 ] navigation sometimes fails to use correct... [mwilson] - fix [ 1168812 ] navigation sometimes fails to use correct... [mwilson]
6.5.3 6.5.3
- Sorted templates into folders named after their respective namespaces - Sorted templates into folders named after their respective namespaces
& re-enabled the manage button next to the template dropdown [mwilson] & re-enabled the manage button next to the template dropdown [mwilson]

View file

@ -826,7 +826,7 @@ sub www_deny {
#------------------------------------------------------------------- #-------------------------------------------------------------------
sub www_edit { sub www_edit {
my $self = shift; my $self = shift;
my %var = %{$self->getTemplateVars}; my %var;
my $content; my $content;
my $title; my $title;
if ($session{form}{func} eq "add") { # new post if ($session{form}{func} eq "add") { # new post
@ -988,6 +988,7 @@ sub www_edit {
name => 'endDate', name => 'endDate',
value => $endDate value => $endDate
}); });
$self->getThread->getParent->appendTemplateLabels(\%var);
return $self->getThread->getParent->processStyle($self->processTemplate(\%var,$self->getThread->getParent->get("postFormTemplateId"))); return $self->getThread->getParent->processStyle($self->processTemplate(\%var,$self->getThread->getParent->get("postFormTemplateId")));
} }