I have no idea why this was removed, but I'm re-adding it.

This commit is contained in:
Matthew Wilson 2006-05-19 19:27:16 +00:00
parent 9acd445087
commit 94565a79be

View file

@ -675,7 +675,11 @@ sub processPropertiesFromFormPost {
$self->getThread->stick if ($self->session->form->process("stick"));
}
}
$self->getThread->subscribe if ($self->session->form->process("subscribe"));
$self->getThread->subscribe if ($self->session->form->process("subscribe"));
delete $self->{_storageLocation};
my $storage = $self->getStorageLocation;
my $attachmentLimit = $self->getThread->getParent->get("attachmentsPerPost");
$storage->addFileFromFormPost("file", $attachmentLimit) if $attachmentLimit;
$self->postProcess;
$self->requestCommit;
}