diff --git a/docs/changelog/6.x.x.txt b/docs/changelog/6.x.x.txt index b1f673464..1b35c9387 100644 --- a/docs/changelog/6.x.x.txt +++ b/docs/changelog/6.x.x.txt @@ -1,4 +1,5 @@ 6.3.0 + - bugfix [1066824] lib/WebGUI/Forum.pm problem, and the fix - Fixed the Slash_gatewayUrl macro. - Added a "Position" property to the DataForm Edit Field interface. This makes it easier to move a field to a certain position. (Len Kranendonk). - Added the variables "record.edit.icon", "record.delete.url" and "record.delete.icon" to the DataForm DataList template. (Len Kranendonk). diff --git a/lib/WebGUI/Forum.pm b/lib/WebGUI/Forum.pm index d5b021736..e733b6585 100644 --- a/lib/WebGUI/Forum.pm +++ b/lib/WebGUI/Forum.pm @@ -324,6 +324,7 @@ sub new { $properties->{allowReplacements} = $master->{allowReplacements}; $properties->{filterPosts} = $master->{filterPosts}; $properties->{karmaPerPost} = $master->{karmaPerPost}; + $properties->{groupToView} = $master->{groupToView}; $properties->{groupToPost} = $master->{groupToPost}; $properties->{groupToModerate} = $master->{groupToModerate}; $properties->{moderatePosts} = $master->{moderatePosts};