Added message preview functionality to forum. RFE[991000]

This commit is contained in:
Leendert Bottelberghs 2004-08-17 14:42:19 +00:00
parent 19e0bfbdbe
commit 7ef35e20c3
3 changed files with 107 additions and 5 deletions

View file

@ -358,6 +358,7 @@ sub new {
$properties->{searchTemplateId} = $master->{searchTemplateId};
$properties->{notificationTemplateId} = $master->{notificationTemplateId};
$properties->{postFormTemplateId} = $master->{postFormTemplateId};
$properties->{postPreviewTemplateId} = $master->{postPreviewTemplateId};
$properties->{archiveAfter} = $master->{archiveAfter};
$properties->{allowRichEdit} = $master->{allowRichEdit};
$properties->{allowReplacements} = $master->{allowReplacements};
@ -369,6 +370,8 @@ sub new {
$properties->{attachmentsPerPost} = $master->{attachmentsPerPost};
$properties->{addEditStampToPosts} = $master->{addEditStampsToPost};
$properties->{postsPerPage} = $master->{postsPerPage};
$properties->{usePreview} = $master->{usePreview};
}
bless {_properties=>$properties}, $class;
}