Merge r3112 bugfix from branch/WebGUI-7.1 re Matrix assets not correctly
propagating their permissions to newly-created listing Collaboration Systems.
This commit is contained in:
parent
09c4af8ad7
commit
84b3bd9003
2 changed files with 5 additions and 4 deletions
|
|
@ -42,6 +42,7 @@
|
|||
- fix: Unlock tag
|
||||
- Added some additional indicies for slightly better performance.
|
||||
- fix: PM resource search popup has no scrollbars
|
||||
- fix: Matrix listings create CS assets with wrong permissions
|
||||
|
||||
7.1.2
|
||||
- Fixed a bug where logging in/out would cause a blank page display.
|
||||
|
|
|
|||
|
|
@ -702,8 +702,8 @@ sub www_editListingSave {
|
|||
title=>$productName,
|
||||
menuTitle=>$productName,
|
||||
url=>$productName,
|
||||
groupIdView=>7,
|
||||
groupIdEdit=>3,
|
||||
groupIdView=>$self->get('groupIdView'),
|
||||
groupIdEdit=>$self->get('groupIdEdit'),
|
||||
displayLastReply => 0,
|
||||
allowReplies => 1,
|
||||
threadsPerPage => 30,
|
||||
|
|
@ -729,8 +729,8 @@ sub www_editListingSave {
|
|||
approvalWorkflow=>"pbworkflow000000000003",
|
||||
karmaRatingMultiplier => 0,
|
||||
moderatePosts => 0,
|
||||
moderateGroupId => '4',
|
||||
postGroupId => '7',
|
||||
moderateGroupId => $self->get('groupIdEdit'),
|
||||
postGroupId => $self->get('groupIdView'),
|
||||
styleTemplateId => $self->get('styleTemplateId'),
|
||||
printableStyleTemplateId => $self->get('printableStyleTemplateId'),
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue